commit caa747964c405965718e27f4cb876d76350ae235 Author: Bene Date: Mon Apr 7 12:20:48 2025 +0200 add initial script api woocommerce diff --git a/__pycache__/api.cpython-311.pyc b/__pycache__/api.cpython-311.pyc new file mode 100644 index 0000000..7beb145 Binary files /dev/null and b/__pycache__/api.cpython-311.pyc differ diff --git a/__pycache__/exiftool.cpython-311.pyc b/__pycache__/exiftool.cpython-311.pyc new file mode 100644 index 0000000..ab53c77 Binary files /dev/null and b/__pycache__/exiftool.cpython-311.pyc differ diff --git a/api.py b/api.py new file mode 100644 index 0000000..09f5795 --- /dev/null +++ b/api.py @@ -0,0 +1,212 @@ +from woocommerce import API +import pandas as pd +import ezodf +import requests +import pprint + +wcapi = API( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False # Désactive la vérification SSL pour le développement +) + + +""" +'images': [ + {'src':'https://lescreationsdemissbleue.local/wp-content/uploads/2025/02/chope-citron-meringue-face.jpg'}, + {'src':'https://lescreationsdemissbleue.local/wp-content/uploads/2025/02/chope-citron-meringue-haut.jpg'}, + ] +{'alt': '', + 'date_created': '2025-01-16T17:22:38', + 'date_created_gmt': '2025-01-16T16:22:38', + 'date_modified': '2025-01-16T17:22:38', + 'date_modified_gmt': '2025-01-16T16:22:38', + 'name': 'Chope citron meringué (3)', + 'src': 'https://lescreationsdemissbleue.local/wp-content/uploads/2025/02/chope-citron-meringue-dos.jpg'}""" + +"""import requests + +url = "https://lescreationsdemissbleue.local/wp-json/wp/v2/media?media_type=image" +response = requests.get(url, verify=False) # note: verify=False pour bypasser le certificat auto-signé en local +images = response.json() +print(images) +pprint.pprint(response.json()) + +""" + +"""data = { + 'images' : [ + {'id':610},#,'src':'https://lescreationsdemissbleue.local/wp-content/uploads/2025/02/chope-citron-meringue-face.jpg'}, + {'id':609},#'src':'https://lescreationsdemissbleue.local/wp-content/uploads/2025/02/chope-citron-meringue-haut.jpg'}, + {'id':608}, + ], +}""" + +"""data = { + 'description': ""La Chope au parfum citron meringué est une véritable œuvre d'art, entièrement fabriquée à la main avec soin et précision, tant par le verre qui a été réalisé par un artisan verrier à Montauroux dans le Sud de la France, que par la bougie elle-même qui est faite avec passion par mes soins. + Cette bougie offre une expérience olfactive unique, combinant les notes sophistiquées des parfums de Grasse avec la fraîcheur acidulée du citron meringué. Parfaite pour créer une ambiance chaleureuse et accueillante, elle diffuse un parfum délicat et fruité qui enveloppera votre intérieur. Que ce soit pour une soirée relaxante ou pour ajouter une touche originale à votre décoration, cette bougie est un choix raffiné qui séduira vos sens et émerveillera vos invités. + La couleur jaune est associée à la joie, à la gaieté et à la fête. Elle est la couleur de l'amitié, des relations sociales ou encore de la fraternité. Le jaune peut aussi faire référence à la douceur et à la fraîcheur. Il est associé au bien-être et à la bonne humeur et transmet un côté ludique et rafraîchissant. + Si vous souhaitez apporter une touche ensoleillée et acidulée à votre intérieur cette chope est faite pour vous. + Parfum de Grasse + Sans CMR + Sans phtalates + Non testé sur des animaux + + Mèche en coton"", + 'regular_price': '36.00', + 'price': '36.00', + 'stock_quantity':1, + 'weight':'0.895' +}""" + +data = { + "meta_data": [ + { + "key": "conseil_utilisation", + "value": """- Allumez la bougie et laissez un puits se creuser autour de la mèche afin que l'odeur se diffuse. Ne dépassez pas les 3h continues de brûlage.  + - La cire de soja se nettoie facilement avec de l’eau chaude, vous pourrez ainsi récupérer le contenant après avoir consumé toute la bougie, + - Toutes les bougies disposent d’étiquettes de sécurité, merci d’en prendre connaissance avant d’allumer le produit. + - La bougie brûlera environ 38 heures.""" + } + ] +} + +response = wcapi.get("products/199") +if response.status_code == 200: + #wcapi.put("products/categories/199", data).json() + #wcapi.put("products/199", data) + #pprint.pprint(response.json()) + #response = wcapi.put("products/199", data) + #pprint.pprint(response.json()) + pass +else: + print("Erreur lors de la connexion :", response.text) + +#print(wcapi.get("categorie/bougie-chope-de-biere/").json()) + +"""category_data = { + "name": "Bougies Parfumées", + "description": "Collection de bougies artisanales aux parfums uniques.", + "parent": 0, + "image": {"src": "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\pyramide_olfactive.png"}, + "alt":"Bougie parfumées artisanale", + "name":"Bougie parfumées artisanale", + +}""" + +import base64 + +# ✅ Générer l'authentification Basic en Base64 avec `consumer_key` et `consumer_secret` +auth_str = wcapi.consumer_key +auth_bytes = auth_str.encode("utf-8") +auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +# ✅ URL de l'API WooCommerce pour les médias +media_api_url = "https://lescreationsdemissbleue.local/wp-json/wp/v2/media" +products_api_url = "https://lescreationsdemissbleue.local/wp-json/wc/v3/products" +headers = { + "Authorization": f"Basic {base64.b64encode(f'{wcapi.consumer_key}:{wcapi.consumer_secret}'.encode()).decode()}", + "Content-Type": "application/json" +} + +# API category + +categories_api_url = "https://lescreationsdemissbleue.local/wp-json/wp/v2/product_cat" + +def create_category(categories_api_url, headers, name, description, image_id=None, parent_id=None): + """Crée une catégorie WooCommerce (principale ou sous-catégorie)""" + category_data = { + "name": name, + "description": description, + "image" : + { + "id":image_id + }, + "parent": parent_id if parent_id else 0, + } + + response = requests.post(categories_api_url, headers=headers, json=category_data) + + if response.status_code == 201: + category = response.json() + print(f"✅ Catégorie '{name}' créée avec succès ! ID : {category['id']}") + return category["id"] + else: + print(f"❌ Erreur lors de la création de '{name}' : {response.status_code} {response.text}") + return None + +# ✅ Exécuter la création automatique +"""category_parent_id = create_category("Gamme prestige", "Catégorie principale pour organiser la gamme prestige") +if category_parent_id: + subcategory_id = create_category("Chopes", "Sous-catégorie de la gamme prestige", category_parent_id) +""" + + + + + +# ✅ Récupérer les produits +"""response = requests.get(products_api_url, headers=headers, params={"per_page": 100}, verify=False) # Limite à 100 produits + +if response.status_code == 200: + products = response.json() + + # 📌 Extraire les ID et noms des produits ainsi que leurs catégories associées + for product in products: + product_id = product["id"] + product_name = product["name"] + categories = [cat["name"] for cat in product["categories"]] # Récupérer les noms des catégories + + print(f"📌 Produit ID: {product_id} - Nom: {product_name} - Catégories: {', '.join(categories) if categories else 'Aucune'}") +else: + print(f"❌ Erreur : {response.status_code} {response.text}")""" + +"""response_create_category = wcapi.post("products/categories/", category_data) +if response_create_category.status_code == 201: + #wcapi.put("products/categories/199", data).json() + #wcapi.put("products/199", data) + #pprint.pprint(response.json()) + #response = wcapi.put("products/199", data) + category = response_create_category.json() + category_id = category["id"] + pprint.pprint(response_create_category.json()) + print(f"category_id = {category_id}") +else: + print("Erreur lors de la connexion :", response.text)""" + +import pandas as pd +import ezodf + +# Charger le fichier ODS +ezodf.config.set_table_expand_strategy('all') +doc = ezodf.opendoc("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods") + +# Sélectionner la première feuille +sheet = doc.sheets[0] + +# Convertir la feuille en DataFrame +data = [] +for row in sheet.rows(): + data.append([cell.value for cell in row]) +import json +# Convertir en DataFrame Pandas +df = pd.DataFrame(data) + +# Vérifier que la première ligne contient bien les noms des colonnes +df.columns = df.iloc[0] # Définit la première ligne comme noms des colonnes +df = df[1:].reset_index(drop=True) # Supprime la première ligne et réindexe correctement +df = df.dropna(how='all') # Supprime les lignes entièrement vides + +# Convertir en JSON (clé = noms des colonnes) +json_data = df.to_dict(orient="records") + +# Afficher le JSON formaté +#print(json.dumps(json_data, indent=4, ensure_ascii=False)) +for row in json_data: + print(row['Photo']) +#get_data = json.dumps(json_data, indent=4, ensure_ascii=False) + + diff --git a/api_2.py b/api_2.py new file mode 100644 index 0000000..e01effa --- /dev/null +++ b/api_2.py @@ -0,0 +1,1281 @@ +from woocommerce import API as WoocommerceApi +from pathlib import Path +import pandas as pd +import ezodf +import requests +import pprint +import base64 +import time +import json +import pyexcel_ods3 +import unicodedata +import logging + +logger = logging.getLogger(__name__) + +# 1️⃣ Configurer le logger +logging.basicConfig( + filename="woocommerce.log", # 📌 Fichier où les logs seront sauvegardés + level=logging.DEBUG, # 📌 Niveau de log (DEBUG, INFO, WARNING, ERROR, CRITICAL) + format="%(asctime)s - %(levelname)s - %(message)s", # 📌 Format du log + datefmt="%Y-%m-%d %H:%M:%S" # 📌 Format de la date +) + +# via consumer key and consumer secret : +# https://lescreationsdemissbleue.local/wp-json/wc/v3/products?consumer_key=ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e&consumer_secret=cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768 + +wcapi = WoocommerceApi( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False # Désactive la vérification SSL pour le développement +) + +class AuthentificationWpApi: + # Identifiants WordPress (et non WooCommerce) + wordpress_username = "admin_lcdm" # Remplace par ton username WordPress + wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + + # Générer l'authentification Basic en base64 + auth_str = f"{wordpress_username}:{wordpress_application_password}" + auth_bytes = auth_str.encode("utf-8") + auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +ath = AuthentificationWpApi() + +WEBSITE_URL = "https://lescreationsdemissbleue.local" +FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\donnees_site_internet_missbleue.ods" +BASE_PATH = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\" +#FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods" + +class OdsReader: + def __init__(self): + self.filename_ods = FILENAME_ODS + + def get_doc_ods(self, number_sheet): + # ezodf.config.set_table_expand_strategy('all') + doc = ezodf.opendoc(self.filename_ods) + #pprint.pprint(doc) + #print(f"type = {type(doc.sheets)}") + #print(f"doc.sheets = {doc.sheets}") + + + sheets_list = list(doc.sheets) + + # 🔹 Vérification : Afficher toutes les feuilles disponibles + print(f"Feuilles disponibles : {[sheet.name for sheet in sheets_list]}") + sheet = doc.sheets[number_sheet] + print(f"Feuilles disponibles : {[sheet.name for sheet in doc.sheets]}") # Debug + data = [] + for row in sheet.rows(): + data.append([cell.value for cell in row]) + + df = pd.DataFrame(data) + df.columns = df.iloc[0] + df = df[1:].reset_index(drop=True) + df = df.dropna(how='all') + json_data = df.to_dict(orient="records") + return json_data + +class MediaManager(OdsReader): + + def __init__(self, ath): + super().__init__() + self.ath = ath + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + #[cat.strip().replace('"', '') for cat in product['Categorie'].split("/")] + + def upload_media(self): + json_data = self.get_doc_ods(0) + for media in json_data: + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + #print(f'path = {path}') + with open(BASE_PATH + media['Chemin'], "rb") as image_file: + response = requests.post( + self.media_api_url, + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + #print(f'response.status_code = {response.status_code}, response_text = {response.text}') + if response.status_code == 201: + media_data = response.json() + #print(f"media_data['slug'] = {media_data['slug']}") + self.update_data_media(media, media_data['id']) + else: + return None + + def update_data_media(self, media, id_img): + update_data = { + "title" : media['Nom'], + "alt_text": media['Description'], + "slug": media['Slug'], + } + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + response = requests.post( + f"{self.media_api_url}/{id_img}", + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + json=update_data, + verify=False + ) + + if response.status_code == 200: + return response.json() + else: + return None + + def find_id_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + return img['id'] + + def get_all_as_slug_dict(self): + all_slug_dict = {} + images = self.get_all_images() + for img in images: + all_slug_dict[img['id']] = img['slug'] + return all_slug_dict + + def delete_media_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + delete_url = f"{self.media_api_url}/{img['id']}?force=true" + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + + def get_all_images(self): + """Récupère toutes les images en gérant la pagination""" + all_images = [] + page = 1 + while True: + response = requests.get(f"{self.media_api_url}?per_page=100&page={page}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + if response.status_code != 200: + break + + images = response.json() + if not images: + break + + all_images.extend(images) + page += 1 + + return all_images + + def delete_images(self, images): + """Supprime toutes les images récupérées""" + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + +"""category_manager = CategoryManager(api=api, medias=media_manager.get_all_as_slug_dict()) +category_manager.create(name, short_description, description, )""" + +class CategoryManager(OdsReader): + + def __init__(self, wcapi, ath, medias): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + #print(f"response.status_code = {response.status_code}") + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == slug: + #pprint.pprint(cat) + return cat['id'] + + def create_category(self, name, description, slug): + category_data = { + "name": name, + "description": description, + "slug":slug + } + if self.find_id_by_slug(slug): + self.error_log.append(f"Catégorie contenant comme slug '{slug}' existe déjà") + else: + self.wcapi.post("products/categories/", category_data) + + def assign_parent_category(self, parent_slug, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + parent_id = self.find_id_by_parent_slug(parent_slug) + if parent_id: + if cat['slug'] == slug: + self.wcapi.put(f"products/categories/{cat['id']}",{'parent': parent_id}) + + def find_id_by_parent_slug(self, parent_slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == parent_slug: + return cat['id'] + + def find_media_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def update_media_id_for_category(self, media_id, cat_id): + update_category_data = { + "image" : {'id':media_id}, + } + self.wcapi.put(f"products/categories/{cat_id}", update_category_data) + + def update_data_categories(self): + json_data = self.get_doc_ods(1) + for category in json_data: + self.create_category(category['Nom'], category['Description'], category['Slug']) + cat_id = self.find_id_by_slug(category['Slug']) + media_id = self.find_media_id_by_slug(category['Media Slug']) + self.assign_parent_category(category['Parent Slug'], category['Slug']) + self.update_media_id_for_category(media_id,cat_id) + + def delete_all_category(self): + response = self.wcapi.get(f"products/categories",params={"per_page": 100}) + for cat in response.json(): + self.wcapi.delete(f"products/categories/{cat['id']}", params={"force": True}) + + def delete_media_category(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_category_by_id(self, category_id): + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def delete_category_by_slug(self, slug): + category_id = self.find_id_by_slug(slug) + #print(f"category_id = {category_id}") + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def get_errors(self): + return print(f"self.error_log = {self.error_log}") + +class ProductManager(OdsReader): + def __init__(self, wcapi, ath, medias): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + + def update_data_list_cat_product(self, list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + print(f"product_id = {product_id}") + #print(f"product_data = {product_data}") + self.wcapi.put(f"products/{product_id}", product_data) + #self.wcapi.get(f"products/{product_id}") + + def get_list_media_id_for_product(self, product): + media_id = {} + list_media_id_for_product = [] + list_media_by_doc = [img.strip().replace(' ', '') for img in product.split(",")] + #pprint.pprint(self.uploaded_images_pro) + #print(f'list_media_by_doc = {list_media_by_doc}') + for id, media_slug in self.medias.items(): + for media in list_media_by_doc: + if media == media_slug: + image_id = {'id':id} + list_media_id_for_product.append(image_id) + #print(f"list_image_id_for_product = {list_media_id_for_product}") + return list_media_id_for_product[::-1] + + def get_list_category_for_product(self, product): + response = self.wcapi.get("products/categories",params={"per_page": 100}) + category_list_by_doc = [cat.strip().replace('"', '') for cat in product.split("/")] + list_category_for_product = [] + for category in response.json(): + for cat in category_list_by_doc: + #print(f"category['name'] = {category['name']}") + #print(f"cat = {cat}") + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + #print(f'list_category_for_product = {list_category_for_product}') + return list_category_for_product + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/",params={"per_page": 100}) + if response.status_code == 200: + products = response.json() + for pro in products: + if pro['slug'] == slug: + return pro['id'] + + def find_media_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def create_tabs_from_custom_dict(self, product_id, product): + product_tabs_data = {} + list_product_tabs_data = [] + x = 1 + for key in product.keys(): + #key = key.replace("’", "'") + if key == "Conseils d’utilisation" or key == "Précautions articles" or key == "Description" or key == "Allergènes": + product_tabs_data['title'] = key + product_tabs_data['content'] = product[key] + product_tabs_data['nickname'] = '' + product_tabs_data['position'] = x + product_tabs_data['tab_type'] = 'local' + list_product_tabs_data.append(product_tabs_data) + product_tabs_data = {} + x += 1 + + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + #product_response = response.json() + meta_data = [] + meta_data.append( + {'key': 'wb_custom_tabs', 'value': list_product_tabs_data} + ) + + meta_data_data = { + 'meta_data': meta_data + } + #pprint.pprint(meta_data_data) + res = self.wcapi.post(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + def create_product(self, product): + product_data = { + 'name' : product['Nom'], + 'price': product['Prix'], + 'regular_price': product['Prix'], + 'stock_quantity': 1, + 'manage_stock':True, + #'description': product['Description'], + 'short_description': product['Courte Description'], + } + + #print(f"product['Prix'] = {product['Prix']}") + if self.find_id_by_slug(product['Slug']): + self.error_log.append(f"Produit contenant comme slug '{product['Slug']}' existe déjà") + else: + self.wcapi.post("products/", product_data) + """if response.status_code == 201: + product = response.json() + return product["id"] + else: + return None""" + + + def update_data_product(self): + json_data = self.get_doc_ods(2) + for product in json_data: + self.create_product(product) + product_id = self.find_id_by_slug(product['Slug']) + list_category_id = self.get_list_category_for_product(product['Catégories']) + list_img_id = self.get_list_media_id_for_product(product['Media Slugs']) + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + #self.create_tabs_from_custom_dict(product_id, product) + + def get_all_products(self): + """Récupère tous les produits en gérant la pagination""" + all_products = [] + page = 1 + + while True: + response = self.wcapi.get("products", params={"per_page": 100, "page": page}) + + if response.status_code != 200: + print(f"⚠️ Erreur API WooCommerce: {response.status_code} - {response.json()}") + break + + products = response.json() + if not products: # Si la page est vide, on arrête la boucle + break + + all_products.extend(products) + page += 1 # On passe à la page suivante + + #pprint.pprint(all_products) + return all_products + + + def delete_product(self): + json_data = self.get_doc_ods(2) + for product in json_data: + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + #print(f"product['Nom'] = {product['Nom']}") + #print(f"pro['name'] = {pro['name']}") + if product['Nom'] == pro['name']: + self.wcapi.delete(f"products/{pro['id']}") + + """def delete_all_product(self): + response = self.wcapi.get(f"products/",params={"per_page": 100}) + for pro in response.json(): + self.wcapi.delete(f"products/{pro['id']}", params={"force": True})""" + + def delete_all_product(self): + products = self.get_all_products() + for pro in products: + self.wcapi.delete(f"products/{pro['id']}", params={"force": True}) + + def delete_media_product(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_product_by_id(self, product_id): + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + def delete_product_by_slug(self, slug): + product_id = self.find_id_by_slug(slug) + #print(f"product_id = {product_id}") + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + + def normalize_string(text): + return unicodedata.normalize("NFKC", text).strip().lower() + + def tab_exists(self, product_id, name_tab): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + response_json = self.wcapi.get(f"products/{product_id}").json() + #pprint.pprint(response_json) + #print(f"response_json['meta_data']= {response_json['meta_data']}") + for meta_data in response_json['meta_data']: + #pprint.pprint(meta_data) + for key_meta_data, value_meta_data in meta_data.items(): + #pprint.pprint(response_json['meta_data']) + #print(f"tùype meta_data = {type(response_json['meta_data'][0])}") + #print(f"value = {value}") + #print('ici') + #print(type(value_meta_data)) + #print(f"key_meta_data = {key_meta_data}, value_meta_data = {value_meta_data}") + if key_meta_data == "value": + #print('loool') + if isinstance(value_meta_data, list): + for tab in value_meta_data: + # Normalisation des chaînes pour éviter les erreurs subtiles + """clean_name_tab = name_tab.strip().lower() + clean_tab_title = tab['title'].strip().lower() + + print(f"Comparing: '{clean_name_tab}' == '{clean_tab_title}'") # Débugging + + if clean_name_tab == clean_tab_title: + print("✅ Correspondance trouvée !") + else: + print("❌ Pas de correspondance")""" + + #print(f"name_tab = {name_tab} - tab = {tab}") + if name_tab == tab['title']: + return True + return False + +class AttributeManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_attributes(self): + attributes = self.wcapi.get(f"products/attributes").json() + #pprint.pprint(attributes) + one_attribute = self.wcapi.get(f"products/attributes/1/terms").json() + #print('_____') + #pprint.pprint(one_attribute) + return attributes + + def get_by_name(self, name): + attributes = self.wcapi.get(f"products/attributes").json() + for attr in attributes: + if attr['name'] == name: + attribute = self.wcapi.get(f"products/attributes/{attr['id']}", params={"per_page": 100}).json() + #print(f"attribute = {attribute}") + return attribute + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_doc_ods(3) + for item in json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + """def create(self, list_name_attributes): + for name_attribute in list_name_attributes: + attribute_data = { + 'name' : name_attribute + } + self.wcapi.post(f"products/attributes", attribute_data) + """ + + def create(self): + features_json_data = self.get_doc_ods(3) + for item in features_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + print(f"nom = {item['Nom']}") + attribute_data = { + 'name' : item["Nom"] + } + self.wcapi.post(f"products/attributes", attribute_data) + + def get_term(self): + term_dict = {} + list_item = [] + term_json_data = self.get_doc_ods(3) + for item in term_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + print(f"item['Valeurs'] = {item['Valeurs']}") + if "," in item["Valeurs"]: + list_item = [value_term.strip() for value_term in item['Valeurs'].split(",")] + else: + item['Valeurs'].strip() + if list_item: + term_dict[item['Nom']] = list_item + else: + term_dict[item['Nom']] = item['Valeurs'] + return term_dict + + def configure_term(self): + term_dict = self.get_term() + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + for name, value in term_dict.items(): + print(f"term_dict = {term_dict}") + if attribute['name'] == name: + if isinstance(value, list): + for v in value: + term = { + 'name' : v + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + else: + term = { + 'name' : value + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + + def create_for_product(self, product_id, name, value): + data_attribute = { + 'name': name, + 'options':value + } + print(f"ici = {name} et {value}") + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_attributes_data = product_meta_data.get("attributes", []) + pprint.pprint(existing_attributes_data) + already_exist = False + for data in existing_attributes_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['name'] == name: + already_exist = True + + if already_exist == False: + found = False + for attribute in existing_attributes_data: + if attribute["name"] == name: + attribute["options"].append(data_attribute) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_attributes_data.append({ + "name": name, + "options": [value], + "visible":True, + }) + attributes_data = { + 'attributes': existing_attributes_data + } + pprint.pprint(attributes_data) + res = self.wcapi.put(f"products/{product_id}", attributes_data) + else: + print('already_exist') + else: + print(f"error") + + def delete_all_for_product(self): + response_product = self.wcapi.get(f"products/", params={"per_page": 100}) + if response_product.status_code == 200: + products = response_product.json() + for product in products: + existing_attributes_data = product.get("attributes", []) + if existing_attributes_data == []: + pass + else: + attribute_data = { + 'attributes': [] + } + res = self.wcapi.post(f"products/{product['id']}", attribute_data) + + + def delete_all_term(self): + response_attribute = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response_attribute.status_code == 200: + attributes = response_attribute.json() + for attribute in attributes: + response_attribute_term = self.wcapi.get(f"products/attributes/{attribute['id']}/terms", params={"per_page": 100}) + if response_attribute_term.status_code == 200: + attributes_term = response_attribute_term.json() + for term in attributes_term: + self.wcapi.delete(f"products/attributes/{attribute['id']}/terms/{term['id']}",params={"force": True}) + + def delete_all(self): + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + self.wcapi.delete(f"products/attributes/{attribute['id']}",params={"force": True}) + + """json_data = self.get_doc_ods(3) + for item in json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + print('ici') + self.wcapi.delete(f"products/attributes",params={"force": True})""" + #def get_names_attributes(self attributes): + + """ + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_doc_ods(3) + for item in json_data: + if item['Onglet'].strip() != "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create_new_name_attributes(self, attributes, list_name_attributes): + for key, value in attributes.items(): + for name_attribute in list_name_attributes: + if key == name_attribute: + attribute_data = { + 'name' : value + } + self.wcapi.post(f"products/attributes", attribute_data) + + + + def delete_all(self): + attributes = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + for attr in attributes: + self.wcapi.delete(f"products/attributes/{attr['id']}", params={"force": True}) + + def delete_by_name(self, name): + attributes = self.wcapi.get(f"products/attributes", params={"per_page": 100}).json() + for attr in attributes: + if attr['name'] == name: + self.wcapi.delete(f"products/attributes/{attr['id']}", params={"force": True}) +""" + +class TabManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_doc_ods(3) + for item in json_data: + if item['Onglet'].strip() != "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create_for_product(self, product_id, title, content, nickname, position, tab_type): + logger.info(f"create_for_product(product_id={product_id}, title={title}, content={str(content)[:20]}, nickname={nickname}, position={position}, tab_type={tab_type}) called") + data_tab = { + 'title': title, + 'content':content, + 'nickname':nickname, + 'position':position, + 'tab_type':tab_type + } + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + + already_exist = False + for data in existing_meta_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['title'] == title: + already_exist = True + + if already_exist == False: + found = False + for meta in existing_meta_data: + if meta["key"] == "wb_custom_tabs": + meta["value"].append(data_tab) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_meta_data.append({ + "key": "wb_custom_tabs", + "value": [data_tab] + }) + meta_data_data = { + 'meta_data': existing_meta_data + } + + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print('already_exist') + else: + print(f"error") + + def delete_by_product_id(self, product_id): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product_id}", meta_data) + + def delete_all(self): + response = self.wcapi.get(f"products/", params={"per_page": 100}) + if response.status_code == 200: + product_meta_data = response.json() + for product in product_meta_data: + existing_meta_data = product.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product['id']}", meta_data) + + + #products = self.product_manager.get_all_products() + #for product in products: + + + + +class WooCommerceManager(OdsReader): + def __init__(self, wcapi, media_manager, category_manager, product_manager, tab_manager, attribute_manager): + super().__init__() + self.wcapi = wcapi + self.media_manager = media_manager + self.category_manager = category_manager + self.product_manager = product_manager + self.tab_manager = tab_manager + self.attribute_manager = attribute_manager + + def tab_exists(self, product_id, name_tab): + return self.product_manager.tab_exists(product_id, name_tab) + + """def get_product_tab_details_by_id(self,product_id): + ret = [] + #product = self.wcapi.get(f"products/{product_id}", params={"per_page": 100}) + all_products_json = self.get_doc_ods(2) + all_tabs = self.tab_manager.get_list_name_data() + pprint.pprint(all_tabs) + for product in all_products_json: + for tab in all_tabs: + ret.append([tab, product[tab]]) + return ret + """ + + def get_product_tab_details(self): + ret = [] + all_products_json = self.get_doc_ods(2) + all_tabs = self.tab_manager.get_list_name_data() + for product in all_products_json: + for tab in all_tabs: + ret.append([tab, product[tab]]) + return ret + + def get_product_attributes_details(self): + ret = [] + all_products_json = self.get_doc_ods(2) + all_attributes = self.attribute_manager.get_list_name_data() + for product in all_products_json: + for attributes in all_attributes: + ret.append([attributes, product[attributes]]) + return ret + + def update_product_tab(self): + #self.product_manager.update_data_product() + #product_id = self.product_manager.find_id_by_slug(slug) + products_tab_details = self.get_product_tab_details() + products = self.product_manager.get_all_products() + x=1 + for product in products: + for title, content in products_tab_details: + tab_manager.create_for_product(product_id=product['id'], title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + + def update_product_attribute(self): + products_attributes_details = self.get_product_attributes_details() + products = self.product_manager.get_all_products() + #x=1 + for product in products: + for name, value in products_attributes_details: + self.attribute_manager.create_for_product(product_id=product['id'], name=name, value=value) + #x=x+1 + + def update_product_tab_by_slug(self, slug): + #self.product_manager.update_data_product() + product_id = self.product_manager.find_id_by_slug(slug) + products_tab_details = self.get_product_tab_details() + x=1 + for title, content in products_tab_details: + tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + + def update_product_attribute_by_slug(self, slug): + #self.product_manager.update_data_product() + product_id = self.product_manager.find_id_by_slug(slug) + products_attribute_details = self.get_product_attributes_details() + for name, value in products_attribute_details: + print(f"name = {name}, valuee = {value}") + self.attribute_manager.create_for_product(product_id=product_id, name=name, value=value) + + """def create_all_product(self): + self.product_manager.update_data_product() + x=1 + products = self.product_manager.get_all_products() + json_data = self.get_doc_ods(2) + for product in products: + print('aaaaaaaaaaaaa') + #pprint.pprint(product) + #print(f"product['title'] = {product['title']}") + print(f"product['title']['rendered'] = {product['slug']}") + print('aaaaaaaaaaaaa') + products_tabs_data = self.get_content_product(product['id']) + for p in json_data: + print(f"p['Nom']= {p['Nom']}") + print(f"product.id = {product['id']}") + print(f"product.slug = {p['Slug']} - { product['slug']}") + print(f"product.name = {product['name']}") + if p['Slug'] == product['slug']: + #pprint.pprint(products_tabs_data) + print('______________________') + for title, content in products_tabs_data: + tab_manager.create_for_product(product_id=product['id'], title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + """ +#attributes = AttributeManager(wcapi) +ALL_TABS = ["Allergènes", "Conseils d’utilisation", "Description", "Précautions articles"] +ALL_ATTRIBUTES = ["Temps de combustion", "Type de cire", "Mèche", "Fabrication", "Composition", "Ingrédients et engagement"] +#attributes.create_new_attributes(ALL_ATTRIBUTES) +#attributes.get_by_name('Composition') + + +"""woocommerce_manager.create_product(product_full_dict) # une ligne du tableau "Produits" + + # prepare data + product_data={} + product_attributes_data=[] + product_tabs_data=[] + for k,v in product_dict.items(): + if k in ALL_ATTRIBUTES: + products_attributes_data.append((k,v)) + else if k in ALL_TABS: + products_tabs_data.append((k,v)) + else: + products_data[k]=v + + # create product and assign attributes + id = product_manager.create(product_data) + + # assign tabs values + x=1 + for title, content in products_tabs_data: + tab_manager.create_for_product(product_id=id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + + # assign attributes values + for name, value in products_attributes_data: + attribute_manager.create_for_product(product_id=id, name=name, value=value)""" +media_manager = MediaManager(ath=ath) +#media_manager.upload_media() +category_manager = CategoryManager(wcapi=wcapi,ath=ath, medias=media_manager.get_all_as_slug_dict()) +product_manager = ProductManager(wcapi=wcapi,ath=ath, medias=media_manager.get_all_as_slug_dict()) +#product_manager.delete_product_by_slug("citron-meringue") +tab_manager = TabManager(wcapi=wcapi) +attribute_manager = AttributeManager(wcapi=wcapi) +#attribute_manager.create(ALL_ATTRIBUTES) +#attribute_manager.create() +#attribute_manager.configure_term() +#attribute_manager.delete_all_term() +#product_id = product_manager.find_id_by_slug("citron-meringue")""" +woocommerce_manager = WooCommerceManager(wcapi=wcapi, media_manager=media_manager,category_manager=category_manager,product_manager=product_manager, tab_manager=tab_manager, attribute_manager=attribute_manager) +#woocommerce_manager.update_product_tab() +#woocommerce_manager.tab_manager.delete_by_product_id(1890) +#woocommerce_manager.tab_manager.delete_all() +# woocommerce_manager.update_product_by_slug('bougie-personnalisee') +woocommerce_manager.attribute_manager.delete_all_for_product() +woocommerce_manager.update_product_attribute_by_slug('citron-meringue') +#woocommerce_manager.attribute_manager.delete_all_for_product() + +tabs_in_product = [] +for tab in ALL_TABS: + tab_in_product = woocommerce_manager.tab_exists(1890, tab) + tabs_in_product.append(tab_in_product) + +#print(f"all_tabs = {tabs_in_product}") +"""print("co !!!") +if all(tabs_in_product): + print('true') + #return True +else: + print("false") + #return False""" + +#products_data = woocommerce_manager.get_product_content(519) + +"""x=1 +for title, content in products_tabs_data: + tab_manager.create_for_product(product_id=id, title=title, content=content, nickname="", position=x, tab_type="local") +x=x+1 + # create product with api + # assign tabs values with api + # assign attributes values with api""" + +#media_manager = MediaManager(ath=ath) +#media_manager.upload_media() +#media_manager.delete_media_by_slug(slug="chope-citron-meringue-face") +#id = media_manager.find_id_by_slug(slug="chope-citron-meringue-face") +#print(f'id = {id}') +#slug_dict = media_manager.get_all_as_slug_dict() +#pprint.pprint(slug_dict) +#category_manager = CategoryManager(wcapi=wcapi,ath=ath, medias=media_manager.get_all_as_slug_dict()) +#category_manager.find_id_by_slug(slug="chopes") +#category_manager.delete_category_by_slug("bougies-gourmandes") +"""category_manager.delete_category_by_slug("chopes") +category_manager.delete_category_by_slug("gamme-prestige") +category_manager.delete_category_by_slug("nouveau-test") +category_manager.delete_category_by_slug("second-test") +category_manager.delete_category_by_slug("yoyo") +id = category_manager.update_data_categories() +category_manager.get_errors()""" +#product_manager = ProductManager(wcapi=wcapi,ath=ath, medias=media_manager.get_all_as_slug_dict()) +#product_manager.update_data_product() +#product_manager.find_id_by_slug('citron-meringue') +#product_manager.find_id_by_slug('bougie-chope-de-biere-lavande') +#product_manager.find_id_by_slug('bougie-personnalisee') +#product_manager.delete_product_by_slug("citron-meringue") +#product_manager.update_data_product() +#attributes.get_value_attributes() + +"""product = product_manager.get_all_products() +for p in product: + print(p['id'])""" + +"""product_manager.create(product_list=...) + +manager = WooCommerceManager(media_manager, category_manager, product_manager) + +manager.delete_product(slug=...) +""" + + +""" +#print(f'id = {id}') +class ProductManager(OdsReader): + def __init__(self, wcapi, ath, medias): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.media_api_url = f"{url_website}/wp-json/wp/v2/media" + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def update_data_list_cat_product(self, list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + print(f"product_id = {product_id}") + self.wcapi.put(f"products/{product_id}", product_data) + #self.wcapi.get(f"products/{product_id}") + + def get_list_media_id_for_product(self, product): + media_id = {} + list_media_id_for_product = [] + list_media_by_doc = [img.strip().replace(' ', '') for img in product['Media Slugs'].split(",")] + #pprint.pprint(self.uploaded_images_pro) + for id, media_slug in self.medias.items(): + for media in list_media_by_doc: + if media == media_slug: + image_id = id + list_media_id_for_product.append(image_id) + #print(f"list_image_id_for_product = {list_image_id_for_product}") + return list_media_id_for_product + + def get_list_category_for_product(self, product): + response = self.wcapi.get("products/categories") + category_list_by_doc = [cat.strip().replace('"', '') for cat in product['Categorie'].split("/")] + list_category_for_product = [] + for category in response.json(): + for cat in category_list_by_doc: + #print(f"category['name'] = {category['name']}") + #print(f"cat = {cat}") + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + return list_category_for_product + + def find_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def create_product(self, product): + product_data = { + 'name' : product['Nom'], + #'price': product['Prix'], + #'stock_quantity': product['Stock'], + #'description': product['Description'], + 'short_description': product['Courte Description'], + } + response = self.wcapi.post("products/", product_data) + if response.status_code == 201: + product = response.json() + return product["id"] + else: + return None + + + def update(self): + json_data = self.get_doc_ods() + for product in json_data: + product_id = self.create_product(product) + list_category_id = self.get_list_category_for_product(product) + list_img_id = self.get_list_media_id_for_product(product) + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + def delete_product(self): + json_data = self.get_doc_ods() + for product in json_data: + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + print(f"product['Nom'] = {product['Nom']}") + print(f"pro['name'] = {pro['name']}") + if product['Nom'] == pro['name']: + self.wcapi.delete(f"products/{pro['id']}") + + + def delete_img_product(self): + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + #print(f"pro['name'] = {pro['name']}") + for img_pro in self.uploaded_images_pro: + #print(f"img_pro['title'] = {img_pro['title']}") + if pro['name'] == img_pro['title']: + #print(f"img_pro['id'] = {img_pro['id']}") + #print(f"pro['id'] = {pro['id']}") + response = requests.post( + f"{self.media_api_url}/{img_pro['id']}", + headers=self.headers, + json={"force": True}, # 🔥 Forcer la suppressio + verify=False + ) + + + def delete_all_img_product_by_name(self): + response = requests.get( + f"{self.media_api_url}?per_page=100", + headers=self.headers, + verify=False + ) + images = response.json() + for img in images: + for path_image, name_image, title_image, text_alt, category_name in self.uploaded_images_pro: + if img['title']['rendered'] == title_image: + print(f"img_id = {img['id']}") + print('iiii') + response = requests.delete( + f"{self.media_api_url}/{img['id']}?force=true", + headers=self.headers, + verify=False + ) + + print(f"Status Code: {response.status_code}") + pprint.pprint(response.json()) + + def delete_all_img_product(self): + response = requests.get( + f"{self.media_api_url}?per_page=100", + headers=self.headers, + verify=False + ) + images = response.json() + for img in images: + for img_pro in self.uploaded_images_pro: + if img['title']['rendered'] == img_pro['title']: + print('coucou') + print(f"img_pro['id'] = {img_pro['id']}") + print(f"img['id'] = {img['id']}") + response = requests.delete( + #f"{self.media_api_url}/{img['id']}?force=true" + f"{self.media_api_url}/{img_pro['id']}?force=true", + headers=self.headers, + verify=False + ) + print(f"Status Code: {response.status_code}") + pprint.pprint(response.json()) + + + + def delete(self): + #self.delete_product() + #self.delete_img_product() + #self.delete_all_img_product() + self.delete_all_img_product_by_name() + +url_website = "https://lescreationsdemissbleue.local" +filename_ods = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods" + +image_manager = ImageManager(images_to_upload,ath,url_website) +dict_image = image_manager.update() + +#category_manager = CategoryManager(wcapi,ath,categories_to_create,url_website,dict_image['category']) +#category_manager.update() +#category_manager = CategoryManager(wcapi,ath,categories_to_create,url_website,images_to_upload[0]["categories"]) +#category_manager.delete() + +#product_manager = ProductManager(wcapi,ath,filename_ods,dict_image['product']) +#product_manager.update() +#product_manager = ProductManager(wcapi,ath,filename_ods, images_to_upload[1]["products"]) +#product_manager.delete() + +ALL_MEDIAS=[ + { 'slug': None, 'title': None, 'alt_text': None } +] + +ALL_CATEGORIES=[ + { 'name': None, 'parent_name': 'None', 'description': None, 'media_slug': None } +] + +ALL_PRODUCTS=[ + { 'name': None, 'parent_name': 'None', 'description': None, 'media_slug_list': [] } +] +""" +"""api = WoocommerceApi(...) + +media_manager = MediaManager(api=api) +media_manager.upload(media_list=...) +media_manager.find_id_by_slug(slug=...) +media_manager.delete(slug=...) + +category_manager = CategoryManager(api=api, medias=media_manager.get_all_as_slug_dict()) +category_manager.create(name, short_description, description, ) + + +product_manager = ProductManager(api=api, medias=media_manager.get_all()) +product_manager.create(product_list=...) + +manager = WooCommerceManager(media_manager, category_manager, product_manager) + +manager.delete_product(slug=...) + +attribute_manager = AttributeManager(api=api) +ALL_ATTRIBUTES = ("Mèche", "Fabrication") +attribute_manager.register(ALL_ATTRIBUTES) + +product_manager.create(product_dict) + +woocommerce_manager = WooCommerceManager(api) + +woocommerce_manager.create_product(product_full_dict) # une ligne du tableau "Produits" + + # prepare data + product_data={} + product_attributes_data=[] + product_tabs_data=[] + for k,v in product_dict.items(): + if k in ALL_ATTRIBUTES: + products_attributes_data.append((k,v)) + else if k in ALL_TABS: + products_tabs_data.append((k,v)) + else: + products_data[k]=v + + # create product and assign attributes + id = product_manager.create(product_data) + + # assign tabs values + x=1 + for title, content in products_tabs_data: + tab_manager.create_for_product(product_id=id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + + # assign attributes values + for name, value in products_attributes_data: + attribute_manager.create_for_product(product_id=id, name=name, value=value) + + +""" + + diff --git a/api_3.py b/api_3.py new file mode 100644 index 0000000..c10d52b --- /dev/null +++ b/api_3.py @@ -0,0 +1,1088 @@ +from woocommerce import API as WoocommerceApi +from pathlib import Path +import pandas as pd +import ezodf +import requests +import pprint +import base64 +import time +import json +import pyexcel_ods3 +import unicodedata +import logging +import os +import time + +logger = logging.getLogger(__name__) + +# 1️⃣ Configurer le logger +logging.basicConfig( + filename="woocommerce.log", # 📌 Fichier où les logs seront sauvegardés + level=logging.DEBUG, # 📌 Niveau de log (DEBUG, INFO, WARNING, ERROR, CRITICAL) + format="%(asctime)s - %(levelname)s - %(message)s", # 📌 Format du log + datefmt="%Y-%m-%d %H:%M:%S" # 📌 Format de la date +) + +# via consumer key and consumer secret : +# https://lescreationsdemissbleue.local/wp-json/wc/v3/products?consumer_key=ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e&consumer_secret=cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768 + +wcapi = WoocommerceApi( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False, # Désactive la vérification SSL pour le développement + timeout=30 +) + +class AuthentificationWpApi: + # Identifiants WordPress (et non WooCommerce) + wordpress_username = "admin_lcdm" # Remplace par ton username WordPress + wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + + # Générer l'authentification Basic en base64 + auth_str = f"{wordpress_username}:{wordpress_application_password}" + auth_bytes = auth_str.encode("utf-8") + auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +ath = AuthentificationWpApi() + +WEBSITE_URL = "https://lescreationsdemissbleue.local" +FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\donnees_site_internet_missbleue.ods" +BASE_PATH = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\" +#FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods" + +class OdsReader: + def __init__(self, filename_ods=FILENAME_ODS): + self.filename_ods = filename_ods + + def get_all_product_lines(self): + return self.get_doc_ods(2) + + def get_doc_ods(self, number_sheet): + doc = ezodf.opendoc(self.filename_ods) + #sheets_list = list(doc.sheets) + sheet = doc.sheets[number_sheet] + data = [] + for row in sheet.rows(): + data.append([cell.value for cell in row]) + + df = pd.DataFrame(data) + df.columns = df.iloc[0] + df = df[1:].reset_index(drop=True) + df = df.dropna(how='all') + json_data = df.to_dict(orient="records") + return json_data + +class MediaManager(OdsReader): + + def __init__(self, ath): + super().__init__() + self.ath = ath + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + + def upload_media(self): + json_data = self.get_doc_ods(0) + for media in json_data: + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + #print(f"media['Chemin'] = {media['Chemin']} = image_name {image_name}") + if not self.is_exists(media, image_name): + #print(f'path = {path}') + with open(BASE_PATH + media['Chemin'], "rb") as image_file: + response = requests.post( + self.media_api_url, + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + #print(f'response.status_code = {response.status_code}, response_text = {response.text}') + if response.status_code == 201: + media_data = response.json() + #print(f"media_data['slug'] = {media_data['slug']}") + self.update_data_media(media, media_data['id']) + else: + return None + else: + pass + #print("passe la") + + def is_exists(self, media, image_name): + all_images = self.get_all_images() + #pprint.pprint(all_images) + name_without_extension, extension = os.path.splitext(image_name) + #pprint.pprint(media) + for image in all_images: + #print('uuuuuuuuuuuuuuuuuuuuuu') + #pprint.pprint(image['title']['rendered']) + #print(f"image_name = {image_name}") + #print(f"name_without_extension= {name_without_extension}, image = {image['slug']}, image = {image['id']}, ") + if media['Slug'] == image['slug']: + #print('True') + return True + else: + pass + #print('False') + return False + + """def is_already_exist(self): + json_data = self.get_doc_ods(0) + print('passe ici') + for media in json_data: + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + print(f'path = {path}') + with open(BASE_PATH + media['Chemin'], "rb") as image_file: + response = requests.get( + self.media_api_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + #files={"file": image_file}, + verify=False + ) + #print(f'response.status_code = {response.status_code}, response_text = {response.text}') + if response.status_code == 200: + media_data = response.json() + for media in media_data: + #pprint.pprint(media) + #print(f"media_data['slug'] = {media_data['slug']}") + print(f"media_data_id = {media['id']}") + else: + return None""" + + def update_data_media(self, media, id_img): + update_data = { + "title" : media['Nom'], + "alt_text": media['Description'], + "slug": media['Slug'], + } + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + response = requests.post( + f"{self.media_api_url}/{id_img}", + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + json=update_data, + verify=False + ) + + if response.status_code == 200: + return response.json() + else: + return None + + def find_id_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + return img['id'] + + def get_all_as_slug_dict(self): + all_slug_dict = {} + images = self.get_all_images() + #pprint.pprint(images) + for img in images: + all_slug_dict[img['id']] = img['slug'] + return all_slug_dict + + def delete_media_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + delete_url = f"{self.media_api_url}/{img['id']}?force=true" + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + + def get_all_images(self): + """Récupère toutes les images en gérant la pagination""" + all_images = [] + page = 1 + while True: + response = requests.get(f"{self.media_api_url}?per_page=100&page={page}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + if response.status_code != 200: + break + + images = response.json() + if not images: + break + + all_images.extend(images) + page += 1 + + return all_images + + def delete_images(self, images): + """Supprime toutes les images récupérées""" + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + + def delete_all_images(self): + images = self.get_all_images() + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + + +"""category_manager = CategoryManager(api=api, medias=media_manager.get_all_as_slug_dict()) +category_manager.create(name, short_description, description, )""" + +class CategoryManager(OdsReader): + + def __init__(self, wcapi, ath, medias=None): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + #print(f"response.status_code = {response.status_code}") + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == slug: + #pprint.pprint(cat) + return cat['id'] + + def create_category(self, name, description, slug): + category_data = { + "name": name, + "description": description, + "slug":slug + } + if self.find_id_by_slug(slug): + self.error_log.append(f"Catégorie contenant comme slug '{slug}' existe déjà") + else: + self.wcapi.post("products/categories/", category_data) + + def assign_parent_category(self, parent_slug, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + parent_id = self.find_id_by_parent_slug(parent_slug) + if parent_id: + if cat['slug'] == slug: + self.wcapi.put(f"products/categories/{cat['id']}",{'parent': parent_id}) + + def find_id_by_parent_slug(self, parent_slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == parent_slug: + return cat['id'] + + def find_media_id_by_slug(self, media_slug): + #print(f"media_slug = {media_slug}") + #print(f"media_dict = {self.medias.items()}") + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def update_media_id_for_category(self, media_id, cat_id): + #print(f"media_id = {media_id}, cat_id = {cat_id}") + response = requests.get(f"{self.media_api_url}/{media_id}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + #print(response.json()) + #print(response.json().get("id")) + #print('coucou') + update_category_data = { + "image" : {'id':media_id}, + } + self.wcapi.put(f"products/categories/{cat_id}", update_category_data) + + def update_data_categories(self): + json_data = self.get_doc_ods(1) + for category in json_data: + self.create_category(category['Nom'], category['Description'], category['Slug']) + cat_id = self.find_id_by_slug(category['Slug']) + media_id = self.find_media_id_by_slug(category['Media Slug']) + self.assign_parent_category(category['Parent Slug'], category['Slug']) + self.update_media_id_for_category(media_id,cat_id) + + def delete_all_category(self): + response = self.wcapi.get(f"products/categories",params={"per_page": 100}) + for cat in response.json(): + self.wcapi.delete(f"products/categories/{cat['id']}", params={"force": True}) + + def delete_media_category(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_category_by_id(self, category_id): + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def delete_category_by_slug(self, slug): + category_id = self.find_id_by_slug(slug) + #print(f"category_id = {category_id}") + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def get_errors(self): + return print(f"self.error_log = {self.error_log}") + +class ProductManager(OdsReader): + def __init__(self, wcapi, ath, medias=None): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + + def update_data_list_cat_product(self, list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + print(f"product_id = {product_id}") + self.wcapi.put(f"products/{product_id}", product_data) + + def get_list_media_id_for_product(self, product): + media_id = {} + list_media_id_for_product = [] + list_media_by_doc = [img.strip().replace(' ', '') for img in product.split(",")] + #pprint.pprint(self.uploaded_images_pro) + #print(f'list_media_by_doc = {list_media_by_doc}') + for id, media_slug in self.medias.items(): + for media in list_media_by_doc: + if media == media_slug: + image_id = {'id':id} + list_media_id_for_product.append(image_id) + #print(f"list_image_id_for_product = {list_media_id_for_product}") + return list_media_id_for_product[::-1] + + def get_list_category_for_product(self, product): + response = self.wcapi.get("products/categories",params={"per_page": 100}) + category_list_by_doc = [cat.strip().replace('"', '') for cat in product.split("/")] + list_category_for_product = [] + for category in response.json(): + for cat in category_list_by_doc: + #print(f"category['name'] = {category['name']}") + #print(f"cat = {cat}") + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + #print(f'list_category_for_product = {list_category_for_product}') + return list_category_for_product + + def find_product_by_id(self, id): + response = self.wcapi.get(f"products/{id}") + if response.status_code == 200: + product = response.json() + pprint.pprint(product) + return product + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/",params={"per_page": 100}) + if response.status_code == 200: + products = response.json() + #print("products find_id_by_slug") + #pprint.pprint(products) + for pro in products: + #print(f"product['slug'] = {pro['slug']}, slug = {slug}") + if pro['slug'] == slug: + #print(f"pro_id = {pro['id']}") + return pro['id'] + + def find_media_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def create_tabs_from_custom_dict(self, product_id, product): + print(f"create_tabs = {product_id}") + product_tabs_data = {} + list_product_tabs_data = [] + x = 1 + for key in product.keys(): + #key = key.replace("’", "'") + if key == "Conseils d’utilisation" or key == "Précautions articles" or key == "Description" or key == "Allergènes": + product_tabs_data['title'] = key + product_tabs_data['content'] = product[key] + product_tabs_data['nickname'] = '' + product_tabs_data['position'] = x + product_tabs_data['tab_type'] = 'local' + list_product_tabs_data.append(product_tabs_data) + product_tabs_data = {} + x += 1 + + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + #product_response = response.json() + meta_data = [] + meta_data.append( + {'key': 'wb_custom_tabs', 'value': list_product_tabs_data} + ) + + meta_data_data = { + 'meta_data': meta_data + } + #pprint.pprint(meta_data_data) + res = self.wcapi.post(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + def create_product(self, product): + product_data = { + 'name' : product['Nom'], + 'price': product['Prix'], + 'regular_price': product['Prix'], + 'stock_quantity': 1, + 'manage_stock':True, + 'weight':str(product['Poids']), + 'sku':str(product['Numéro de référence']), + #'description': product['Description'], + 'short_description': product['Courte Description'], + 'slug':product['Slug'] + } + #print(f"product_data = {product_data}") + #print(f"product['Prix'] = {product['Prix']}") + if self.find_id_by_slug(product['Slug']): + #print('la') + self.error_log.append(f"Produit contenant comme slug '{product['Slug']}' existe déjà") + else: + #print('ici') + response = self.wcapi.post("products/", product_data) + #print(f"print(response.text) = {response.text}") + #print(f"response.status_code = {response.status_code}") + #pprint.pprint(response.json()) + + def update_data_product(self): + json_data = self.get_doc_ods(2) + for product in json_data: + self.create_product(product) + pprint.pprint(product) + product_id = self.find_id_by_slug(product['Slug']) + #print(f"product_id_in_update_data_product = {product_id}") + list_category_id = self.get_list_category_for_product(product['Catégories']) + list_img_id = self.get_list_media_id_for_product(product['Media Slugs']) + #print(f"list_category_id = {list_category_id}") + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + #self.create_tabs_from_custom_dict(product_id, product) + def update_data_product_by_slug(self, slug): + json_data = self.get_doc_ods(2) + for product in json_data: + print('blabla') + if product['Slug'] == slug: + print('coucou') + self.create_product(product) + #pprint.pprint(product) + product_id = self.find_id_by_slug(product['Slug']) + #print(f"product_id_in_update_data_product = {product_id}") + list_category_id = self.get_list_category_for_product(product['Catégories']) + list_img_id = self.get_list_media_id_for_product(product['Media Slugs']) + #print(f"list_category_id = {list_category_id}") + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + def get_all_products(self): + """Récupère tous les produits en gérant la pagination""" + all_products = [] + page = 1 + + while True: + response = self.wcapi.get("products", params={"per_page": 100, "page": page}) + + if response.status_code != 200: + print(f"⚠️ Erreur API WooCommerce: {response.status_code} - {response.json()}") + break + + products = response.json() + if not products: # Si la page est vide, on arrête la boucle + break + + all_products.extend(products) + page += 1 # On passe à la page suivante + + #pprint.pprint(all_products) + return all_products + + + def delete_product(self): + json_data = self.get_doc_ods(2) + for product in json_data: + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + if product['Nom'] == pro['name']: + self.wcapi.delete(f"products/{pro['id']}") + + def delete_all_product(self): + products = self.get_all_products() + #print(f"products = {products}") + if products: + for pro in products: + self.wcapi.delete(f"products/{pro['id']}", params={"force": True}) + + def delete_media_product(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_product_by_id(self, product_id): + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + def delete_product_by_slug(self, slug): + product_id = self.find_id_by_slug(slug) + #print(f"product_id = {product_id}") + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + + def normalize_string(text): + return unicodedata.normalize("NFKC", text).strip().lower() + + def tab_exists(self, product_id, name_tab): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + response_json = self.wcapi.get(f"products/{product_id}").json() + for meta_data in response_json['meta_data']: + for key_meta_data, value_meta_data in meta_data.items(): + if key_meta_data == "value": + if isinstance(value_meta_data, list): + for tab in value_meta_data: + if name_tab == tab['title']: + return True + return False + +class AttributeManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_attributes(self): + attributes = self.wcapi.get(f"products/attributes").json() + one_attribute = self.wcapi.get(f"products/attributes/1/terms").json() + return attributes + + def get_by_name(self, name): + attributes = self.wcapi.get(f"products/attributes").json() + for attr in attributes: + if attr['name'] == name: + attribute = self.wcapi.get(f"products/attributes/{attr['id']}", params={"per_page": 100}).json() + return attribute + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_doc_ods(3) + for item in json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create(self): + features_json_data = self.get_doc_ods(3) + for item in features_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + print(f"nom = {item['Nom']}") + attribute_data = { + 'name' : item["Nom"] + } + self.wcapi.post(f"products/attributes", attribute_data) + + def get_term(self): + term_dict = {} + list_item = [] + term_json_data = self.get_doc_ods(3) + for item in term_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + #print(f"item['Valeurs'] = {item['Valeurs']}") + if "," in item["Valeurs"]: + list_item = [value_term.strip() for value_term in item['Valeurs'].split(",")] + else: + item['Valeurs'].strip() + if list_item: + term_dict[item['Nom']] = list_item + else: + term_dict[item['Nom']] = item['Valeurs'] + return term_dict + + def configure_term(self): + term_dict = self.get_term() + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + for name, value in term_dict.items(): + if attribute['name'] == name: + if isinstance(value, list): + for v in value: + term = { + 'name' : v + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + else: + term = { + 'name' : value + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + + def create_for_product(self, product_id, name, value): + data_attribute = { + 'name': name, + 'options':value + } + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_attributes_data = product_meta_data.get("attributes", []) + #pprint.pprint(existing_attributes_data) + already_exist = False + for data in existing_attributes_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['name'] == name: + already_exist = True + + if already_exist == False: + found = False + for attribute in existing_attributes_data: + if attribute["name"] == name: + attribute["options"].append(data_attribute) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_attributes_data.append({ + "name": name, + "options": [value], + "visible":True, + }) + attributes_data = { + 'attributes': existing_attributes_data + } + #pprint.pprint(attributes_data) + res = self.wcapi.put(f"products/{product_id}", attributes_data) + else: + print('already_exist') + else: + print(f"error") + + def delete_all_for_product(self): + response_product = self.wcapi.get(f"products/", params={"per_page": 100}) + if response_product.status_code == 200: + products = response_product.json() + for product in products: + existing_attributes_data = product.get("attributes", []) + if existing_attributes_data == []: + pass + else: + attribute_data = { + 'attributes': [] + } + res = self.wcapi.post(f"products/{product['id']}", attribute_data) + + + def delete_all_term(self): + response_attribute = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response_attribute.status_code == 200: + attributes = response_attribute.json() + for attribute in attributes: + response_attribute_term = self.wcapi.get(f"products/attributes/{attribute['id']}/terms", params={"per_page": 100}) + if response_attribute_term.status_code == 200: + attributes_term = response_attribute_term.json() + for term in attributes_term: + self.wcapi.delete(f"products/attributes/{attribute['id']}/terms/{term['id']}",params={"force": True}) + + def delete_all(self): + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + self.wcapi.delete(f"products/attributes/{attribute['id']}",params={"force": True}) + + +class TabManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_doc_ods(3) + for item in json_data: + if item['Onglet'].strip() != "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create_for_product(self, product_id, title, content, nickname, position, tab_type): + logger.info(f"create_for_product(product_id={product_id}, title={title}, content={str(content)[:20]}, nickname={nickname}, position={position}, tab_type={tab_type}) called") + print(f"create_for_product(product_id={product_id}, title={title}, content={str(content)[:20]}, nickname={nickname}, position={position}, tab_type={tab_type}) called") + data_tab = { + 'title': title, + 'content':content, + 'nickname':nickname, + 'position':position, + 'tab_type':tab_type + } + print('data_tab') + #pprint.pprint(data_tab) + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + if position == 1: + existing_meta_data = product_meta_data.get("meta_data", []) + else: + existing_meta_data = [] + + print('_____________________') + pprint.pprint(existing_meta_data) + already_exist = False + for data in existing_meta_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['title'] == title: + print(f"value_title = {title}") + already_exist = True + print(f"already_exist = {already_exist}") + if already_exist == False: + found = False + for meta in existing_meta_data: + if meta["key"] == "wb_custom_tabs": + meta["value"].append(data_tab) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_meta_data.append({ + "key": "wb_custom_tabs", + "value": [data_tab] + }) + meta_data_data = { + 'meta_data': existing_meta_data + } + #pprint.pprint(meta_data_data) + #print(f"product_id = {product_id}") + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print('else') + data_tab = { + 'content':content, + } + meta_data_data = { + 'meta_data': existing_meta_data + } + print('yoooooooooooooooooooooooooooooooooooooooooooooooooo') + #pprint.pprint(meta_data_data) + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + def delete_by_product_id(self, product_id): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product_id}", meta_data) + + def delete_all(self): + response = self.wcapi.get(f"products/", params={"per_page": 100}) + if response.status_code == 200: + product_meta_data = response.json() + for product in product_meta_data: + existing_meta_data = product.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product['id']}", meta_data) + + +class WooCommerceManager(OdsReader): + def __init__(self, wcapi, media_manager, category_manager, product_manager, tab_manager, attribute_manager): + super().__init__() + self.wcapi = wcapi + self.media_manager = media_manager + self.category_manager = category_manager + self.product_manager = product_manager + self.tab_manager = tab_manager + self.attribute_manager = attribute_manager + + def tab_exists(self, product_id, name_tab): + return self.product_manager.tab_exists(product_id, name_tab) + + def get_product_tab_details(self): + ret = [] + print('yoooooo') + all_products_json = self.get_doc_ods(2) + all_tabs = self.tab_manager.get_list_name_data() + print('passe la') + dict = {} + for product in all_products_json: + #print('product_product') + #pprint.pprint(product) + line = [] + for tab in all_tabs: + line.append([tab, product[tab]]) + dict[product["Parfum"]] = line + #ret.append(dict) + #pprint.pprint(ret) + pprint.pprint(dict) + #return ret + return dict + + def get_product_attributes_details(self): + ret = [] + all_products_json = self.get_doc_ods(2) + all_attributes = self.attribute_manager.get_list_name_data() + for product in all_products_json: + for attributes in all_attributes: + ret.append([attributes, product[attributes]]) + return ret + + def update_product_tab_by_id(self, product_id): + products_tab_details = self.get_product_tab_details() + + """for product in products: + #pprint.pprint(product) + x=1 + for item in product['meta_data'][0]['value']: + for key, value in item.items(): + print(f"key = {key}, value = {value}") + #print(f"len = {len(products)}") + for title, content in products_tab_details: + print(f"products_tab_details = ") + pprint.pprint(products_tab_details) + if value == title: + print(f"title = {title}") + tab_manager.create_for_product(product_id=product['id'], title=title, content=content, nickname="", position=x, tab_type="local") + print("laalala") + x=x+1""" + + x=1 + for title, content in products_tab_details: + tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + if x == 3: + x=1 + + def update_product_tab(self): + products = self.product_manager.get_all_products() + for product in products: + self.update_product_tab_by_id(product['id']) + + def update_product_attribute(self): + products_attributes_details = self.get_product_attributes_details() + products = self.product_manager.get_all_products() + for product in products: + for name, value in products_attributes_details: + self.attribute_manager.create_for_product(product_id=product['id'], name=name, value=value) + + def update_product_tab_by_slug(self, slug): + product_id = self.product_manager.find_id_by_slug(slug) + print('youpi') + product = self.product_manager.find_product_by_id(product_id) + #pprint.pprint(product) + products_tab_details = self.get_product_tab_details() + x=1 + #print('ici') + #pprint.pprint(products_tab_details) + #for title, content in products_tab_details: + + #pprint.pprint(products_tab_details.values()) + #print(type(products_tab_details.values())) + for value in products_tab_details.values(): + #print("value") + #pprint.pprint(value) + for key in products_tab_details.keys(): + for title, content in value: + #print(f"key = {key}") + if key: + if key in product['short_description']: + """print(f"key = {key}") + print(f"short_description = {product['short_description']}") + print(f"content = {content}") + print('?')""" + #print(f"key = {key}") + #print(f"products_tab_details = {products_tab_details}") + tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + else: + pass + else: + print('no key') + x=1 + + def update_product_attribute_by_slug(self, slug): + product_id = self.product_manager.find_id_by_slug(slug) + products_attribute_details = self.get_product_attributes_details() + for name, value in products_attribute_details: + #print(f"name = {name}, valuee = {value}") + self.attribute_manager.create_for_product(product_id=product_id, name=name, value=value) + + def update_product(self): + #self.product_manager.update_data_product() + self.update_product_tab() + #self.update_product_attribute() + + """def update_product_by_slug(self): + self.product_manager.update_data_product() + self.update_product_tab() + self.update_product_attribute()""" + + def update_product_by_slug(self, slug): + self.product_manager.update_data_product_by_slug(slug) + self.update_product_tab_by_slug(slug) + #self.update_product_attribute_by_slug(slug) + + def create_all_informations(self): + medias = media_manager.get_all_as_slug_dict() + self.product_manager.medias = medias + self.update_product_by_slug("chope-adoucissant") + """media_manager.upload_media() + medias = media_manager.get_all_as_slug_dict() + self.product_manager.medias = medias + self.category_manager.medias = medias + self.category_manager.update_data_categories() + self.attribute_manager.create() + self.attribute_manager.configure_term()""" + #self.update_product() + + def process_file(self, filename): + # refresh media cache + medias = media_manager.get_all_as_slug_dict() + self.product_manager.medias = medias + # read provided file + reader = OdsReader(filename) + for product_line in reader.get_all_product_lines(): + # standard product data + product_data = { + 'name' : product_line['Nom'], + 'price': product_line['Prix'], + 'regular_price': product_line['Prix'], + 'stock_quantity': 1, + 'manage_stock':True, + 'weight':str(product_line['Poids']), + 'sku':str(product_line['Numéro de référence']), + #'description': product['Description'], + 'short_description': product_line['Courte Description'], + 'slug':product_line['Slug'] + } + # ... associated attributes + attributes = [] + ... + # ... associated tabs + tabs = [] + ... + # ... associated categories + categories = self.get_list_category_for_product(product_line['Catégories']) + # ... associated categories + medias = self.get_list_media_id_for_product(product_line['Media Slugs']) + # create or update product + self.create_or_update_product(product_data=product_data, attributes=attributes, tabs=tabs, categories=categories, medias=medias) + + + + + def delete_all_informations(self): + #media_manager.delete_all_images() + #attribute_manager.delete_all() + product_manager.delete_all_product() + #category_manager.delete_all_category() + + def delete_information_by_slug(self): + product_manager.delete_product_by_slug("chope-adoucissant") + #category_manager.delete_all_category() + +#ALL_TABS = ["Allergènes", "Conseils d’utilisation", "Description", "Précautions articles"] +#ALL_ATTRIBUTES = ["Temps de combustion", "Type de cire", "Mèche", "Fabrication", "Composition", "Ingrédients et engagement"] + +media_manager = MediaManager(ath=ath) +#media_manager.upload_media() +#media_manager.delete_all_images() +category_manager = CategoryManager(wcapi=wcapi,ath=ath) +#category_manager.delete_all_category() +product_manager = ProductManager(wcapi=wcapi,ath=ath) +#product_manager.delete_all_product() +#medias=media_manager.get_all_as_slug_dict() +#media_manager.delete_media_by_slug('pyramide-olfactive-frangipanier') +#product_manager.delete_product_by_slug("citron-meringue") +#product_manager.update_data_product() +tab_manager = TabManager(wcapi=wcapi) +attribute_manager = AttributeManager(wcapi=wcapi) +#attribute_manager.create(ALL_ATTRIBUTES) +#attribute_manager.create() +#attribute_manager.configure_term() +#attribute_manager.delete_all_term() +#product_id = product_manager.find_id_by_slug("citron-meringue")""" +woocommerce_manager = WooCommerceManager(wcapi=wcapi, media_manager=media_manager,category_manager=category_manager,product_manager=product_manager, tab_manager=tab_manager, attribute_manager=attribute_manager) +woocommerce_manager.process_file(FILENAME_ODS) +#category_manager.update_data_categories() +#woocommerce_manager.delete_all_informations() +#woocommerce_manager.delete_information_by_slug() +#woocommerce_manager.create_all_informations() +#woocommerce_manager.create_all_categories_and_products() +#woocommerce_manager.update_product_tab() +#woocommerce_manager.tab_manager.delete_by_product_id(1890) +#woocommerce_manager.tab_manager.delete_all() +#woocommerce_manager.update_product() +#woocommerce_manager.attribute_manager.delete_all_for_product() +#woocommerce_manager.update_product_attribute_by_slug('citron-meringue') +#woocommerce_manager.attribute_manager.delete_all_for_product() + +"""tabs_in_product = [] +for tab in ALL_TABS: + tab_in_product = woocommerce_manager.tab_exists(1890, tab) + tabs_in_product.append(tab_in_product)""" diff --git a/api_old_code.py b/api_old_code.py new file mode 100644 index 0000000..d3ba1a0 --- /dev/null +++ b/api_old_code.py @@ -0,0 +1,436 @@ +from woocommerce import API +import pandas as pd +import ezodf +import requests +import pprint +import base64 +import time +import json + +wcapi = API( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False # Désactive la vérification SSL pour le développement +) + +class Authentification: + # Identifiants WordPress (et non WooCommerce) + wordpress_username = "admin_lcdm" # Remplace par ton username WordPress + wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + + # Générer l'authentification Basic en base64 + auth_str = f"{wordpress_username}:{wordpress_application_password}" + auth_bytes = auth_str.encode("utf-8") + auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +ath = Authentification() + +path_name = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine" + +images_to_upload = [ + {'categories': [ + (f"{path_name}\\Bougies\\Chope\\chope-sapin-face.jpg", "chope-sapin-face.jpg", "Chope sapin", "Chope sapin de face", "Gamme prestige"), + (f"{path_name}\\Bougies\\Chope\\chope-adoucissant-face.jpg", "chope-adoucissant-face.jpg", "Chope adoucissant", "Chope adoucissant de face", "Chopes"), + ] + }, + {'products':[ + (f"{path_name}\\Bougies\\Chope\\chope-citron-meringue-face.jpg", "chope-citron-meringue-face-1.jpg", "Chope citron meringuée (1)", "Chope citron meringuée de face", "Chopes"), + (f"{path_name}\\Bougies\\Chope\\chope-citron-meringue-haut.jpg", "chope-citron-meringue-haut-1.jpg", "Chope citron meringuée (2)", "Chope citron meringuée de haut", "Chopes"), + (f"{path_name}\\Bougies\\Chope\\chope-citron-meringue-dos.jpg", "chope-citron-meringue-dos-1.jpg", "Chope citron meringuée (3)", "Chope citron meringuée de dos", "Chopes") + ] + } +] + +category_parent_id = 0 +categories_to_create = [ + ("Gamme prestige", "Catégorie principale pour organiser la gamme prestige", None), + ("Chopes", "Catégorie enfant de la gamme prestige", category_parent_id), +] + +#media_api_url = f"https://lescreationsdemissbleue.local/wp-json/wp/v2/media" + +class ImageManager: + + def __init__(self, images_to_upload, ath, url_website): + self.images_to_upload = images_to_upload + self.ath = ath + self.media_api_url = f"{url_website}/wp-json/wp/v2/media" + self.dict_image = {} + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def update_data(self, title, alt, image_id): + updata_data = { + "title" : title, + "alt_text": alt + } + + response = requests.post( + f"{self.media_api_url}/{image_id}", + headers=self.headers, + json=updata_data, + verify=False + ) + + if response.status_code == 200: + return response.json() + else: + return None + + + + def upload_image(self, image_path, image_name, title, alt, category_name): + with open(image_path, "rb") as image_file: + response = requests.post( + self.media_api_url, + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + + if response.status_code == 201: + media_data = response.json() + self.update_data(title, alt, media_data["id"]) + return {'category_name':category_name, 'id':media_data["id"], 'image_name':image_name, 'title':title} # Retourne l'ID de l'image + else: + return None + + def update(self): + uploaded_images_cat = [] + for image_path, image_name, title, alt, category_name in images_to_upload[0]['categories']: + category_dict = self.upload_image(image_path, image_name, title, alt, category_name) + uploaded_images_cat.append(category_dict) + + uploaded_images_pro = [] + for image_path, image_name, title, alt, category_name in images_to_upload[1]['products']: + image_dict = self.upload_image(image_path, image_name, title, alt, category_name) + uploaded_images_pro.append(image_dict) + + self.dict_image['category'] = uploaded_images_cat + self.dict_image['product'] = uploaded_images_pro + + return self.dict_image + + def delete(self): + pass + +class CategoryManager: + + def __init__(self, wcapi, ath, categories_to_create, url_website, uploaded_images): + self.wcapi = wcapi + self.ath = ath + self.categories_to_create = categories_to_create + self.categories_api_url = f"{url_website}/wp-json/wp/v2/product_cat" + self.uploaded_images_cat = uploaded_images + + self.media_api_url = f"{url_website}/wp-json/wp/v2/media" + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def create_category(self, name, description, parent_id=None): + category_data = { + "name": name, + "description": description, + "parent": parent_id if parent_id else 0, + } + response = self.wcapi.post("products/categories/", category_data) + if response.status_code == 201: + category = response.json() + return category + else: + return None + + def get_id_img_for_category(self, category): + for cat_img in self.uploaded_images_cat: + if category['name'] == cat_img['category_name']: + image_id = {'id':cat_img['id']} + #break + return image_id + + def update_data_img_id_for_category(self, img_id, cat_id): + update_category_data = { + "image" : img_id, + } + self.wcapi.put(f"products/categories/{cat_id}", update_category_data) + + def update(self): + for category in self.categories_to_create: + name, description, parent_id = category + if parent_id != None: + parent_id = cat['id'] + cat = self.create_category(name, description, parent_id) + img_id = self.get_id_img_for_category(cat) + self.update_data_img_id_for_category(img_id,cat["id"]) + + def delete_category(self): + response = self.wcapi.get(f"products/categories") + for cat in response.json(): + print(f"cat_image = {cat['image']}") + for category in self.categories_to_create: + name, description, parent_id = category + if cat['name'] == name: + response = self.wcapi.delete(f"products/categories/{cat['id']}", params={"force": True}) + + def delete_img_category(self): + for img_cat in self.uploaded_images_cat: + print(f"img_cat['id'] = {img_cat['id']}") + response = requests.delete( + f"{self.media_api_url}/{img_cat['id']}", + headers=self.headers, + verify=False + ) + + def delete_all_img_cat_by_name(self): + response = requests.get( + f"{self.media_api_url}?per_page=100", + headers=self.headers, + verify=False + ) + images = response.json() + for img in images: + for path_image, name_image, title_image, text_alt, category_name in self.uploaded_images_cat: + if img['title']['rendered'] == title_image: + print(f"img_id = {img['id']}") + print('iiii') + response = requests.delete( + f"{self.media_api_url}/{img['id']}?force=true", + headers=self.headers, + verify=False + ) + + print(f"Status Code: {response.status_code}") + pprint.pprint(response.json()) + + def delete(self): + self.delete_category() + #self.delete_img_category() + self.delete_all_img_cat_by_name() + +class ProductManager: + def __init__(self, wcapi, ath, filename_ods, uploaded_images): + self.wcapi = wcapi + self.ath = ath + self.uploaded_images_pro = uploaded_images + self.filename_ods = filename_ods + + self.media_api_url = f"{url_website}/wp-json/wp/v2/media" + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def get_list_id_img_for_product(self, product): + image_id = {} + list_image_id_for_product = [] + list_images_by_doc = [img.strip().replace('"', '') for img in product['Photo'].split(",")] + #pprint.pprint(self.uploaded_images_pro) + for pro_img in self.uploaded_images_pro: + for image in list_images_by_doc: + #print(f"list_images_by_doc = {list_images_by_doc}") + if image == pro_img['image_name']: + image_id = {'id':pro_img['id']} + list_image_id_for_product.append(image_id) + #print(f"list_image_id_for_product = {list_image_id_for_product}") + return list_image_id_for_product + + def get_list_category_for_product(self, product): + response = self.wcapi.get("products/categories") + category_list_by_doc = [cat.strip().replace('"', '') for cat in product['Categorie'].split("/")] + list_category_for_product = [] + for category in response.json(): + for cat in category_list_by_doc: + #print(f"category['name'] = {category['name']}") + #print(f"cat = {cat}") + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + return list_category_for_product + + def update_data_list_cat_product(self, list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + print(f"product_id = {product_id}") + self.wcapi.put(f"products/{product_id}", product_data) + #self.wcapi.get(f"products/{product_id}") + + def create_product(self, product): + + product_data = { + 'name' : product['Nom'], + 'price': product['Prix'], + 'stock_quantity': product['Stock'], + 'description': product['Description'], + 'short_description': product['Courte_description'], + } + response = self.wcapi.post("products/", product_data) + if response.status_code == 201: + product = response.json() + return product["id"] + else: + return None + + def get_doc_ods(self): + ezodf.config.set_table_expand_strategy('all') + doc = ezodf.opendoc(self.filename_ods) + sheet = doc.sheets[0] + + # Convertir la feuille en DataFrame + data = [] + for row in sheet.rows(): + data.append([cell.value for cell in row]) + + # Convertir en DataFrame Pandas + df = pd.DataFrame(data) + df.columns = df.iloc[0] + df = df[1:].reset_index(drop=True) + df = df.dropna(how='all') + json_data = df.to_dict(orient="records") + return json_data + + def update(self): + json_data = self.get_doc_ods() + for product in json_data: + product_id = self.create_product(product) + list_category_id = self.get_list_category_for_product(product) + list_img_id = self.get_list_id_img_for_product(product) + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + def delete_product(self): + json_data = self.get_doc_ods() + for product in json_data: + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + print(f"product['Nom'] = {product['Nom']}") + print(f"pro['name'] = {pro['name']}") + if product['Nom'] == pro['name']: + self.wcapi.delete(f"products/{pro['id']}") + + + def delete_img_product(self): + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + #print(f"pro['name'] = {pro['name']}") + for img_pro in self.uploaded_images_pro: + #print(f"img_pro['title'] = {img_pro['title']}") + if pro['name'] == img_pro['title']: + #print(f"img_pro['id'] = {img_pro['id']}") + #print(f"pro['id'] = {pro['id']}") + response = requests.post( + f"{self.media_api_url}/{img_pro['id']}", + headers=self.headers, + json={"force": True}, # 🔥 Forcer la suppressio + verify=False + ) + + + def delete_all_img_product_by_name(self): + response = requests.get( + f"{self.media_api_url}?per_page=100", + headers=self.headers, + verify=False + ) + images = response.json() + for img in images: + for path_image, name_image, title_image, text_alt, category_name in self.uploaded_images_pro: + if img['title']['rendered'] == title_image: + print(f"img_id = {img['id']}") + print('iiii') + response = requests.delete( + f"{self.media_api_url}/{img['id']}?force=true", + headers=self.headers, + verify=False + ) + + print(f"Status Code: {response.status_code}") + pprint.pprint(response.json()) + + def delete_all_img_product(self): + response = requests.get( + f"{self.media_api_url}?per_page=100", + headers=self.headers, + verify=False + ) + images = response.json() + for img in images: + for img_pro in self.uploaded_images_pro: + if img['title']['rendered'] == img_pro['title']: + print('coucou') + print(f"img_pro['id'] = {img_pro['id']}") + print(f"img['id'] = {img['id']}") + response = requests.delete( + #f"{self.media_api_url}/{img['id']}?force=true" + f"{self.media_api_url}/{img_pro['id']}?force=true", + headers=self.headers, + verify=False + ) + print(f"Status Code: {response.status_code}") + pprint.pprint(response.json()) + + + + def delete(self): + #self.delete_product() + #self.delete_img_product() + #self.delete_all_img_product() + self.delete_all_img_product_by_name() + +url_website = "https://lescreationsdemissbleue.local" +filename_ods = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods" + +image_manager = ImageManager(images_to_upload,ath,url_website) +dict_image = image_manager.update() + +#category_manager = CategoryManager(wcapi,ath,categories_to_create,url_website,dict_image['category']) +#category_manager.update() +#category_manager = CategoryManager(wcapi,ath,categories_to_create,url_website,images_to_upload[0]["categories"]) +#category_manager.delete() + +product_manager = ProductManager(wcapi,ath,filename_ods,dict_image['product']) +#product_manager.update() +#product_manager = ProductManager(wcapi,ath,filename_ods, images_to_upload[1]["products"]) +product_manager.delete() + +"""ALL_MEDIAS=[ + { 'slug': None, 'title': None, 'alt_text': None } +] + +ALL_CATEGORIES=[ + { 'name': None, 'parent_name': 'None', 'description': None, 'media_slug': None } +] + +ALL_PRODUCTS=[ + { 'name': None, 'parent_name': 'None', 'description': None, 'media_slug_list': [] } +] + +api = WoocommerceApi(...) + +media_manager = MediaManager(api=api) +media_manager.upload(media_list=...) +media_manager.find_id_by_slug(slug=...) +media_manager.delete(slug=...) + +category_manager = CategoryManager(api=api, medias=media_manager.get_all_as_slug_dict()) +category_manager.create(name, short_description, description, ) + + +product_manager = ProductManager(api=api, medias=media_manager.get_all()) +product_manager.create(product_list=...) + +manager = WooCommerceManager(media_manager, category_manager, product_manager) + +manager.delete_product(slug=...) + + +""" \ No newline at end of file diff --git a/api_special_image.py b/api_special_image.py new file mode 100644 index 0000000..2f169df --- /dev/null +++ b/api_special_image.py @@ -0,0 +1,123 @@ +import requests +import base64 +import time +from api import create_category + +# ✅ Identifiants WordPress (et non WooCommerce) +wordpress_username = "admin_lcdm" # Remplace par ton username WordPress +wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + +# ✅ Générer l'authentification Basic en base64 +auth_str = f"{wordpress_username}:{wordpress_application_password}" +auth_bytes = auth_str.encode("utf-8") +auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +image_id = 675 +# ✅ URL de l'API WordPress pour téléverser une image +media_api_url = f"https://lescreationsdemissbleue.local/wp-json/wp/v2/media/{image_id}" + +# ✅ Fichier image à uploader +image_path = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\pyramide_olfactive.png" +image_name = "pyramide_olfactive.png" + +images_to_upload = [ + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-sapin-face.jpg", "chope-sapin-face.jpg"), + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-adoucissant-face.jpg", "chope-adoucissant-face.jpg") +] + +# ✅ Headers avec l'authentification correcte +"""headers = { + "Authorization": f"Basic {auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" +}""" + +headers = { + "Authorization": f"Basic {auth_base64}", + "Content-Type": "application/json" +} + +updata_data = { + "title" : "Pyramide olfactive test", + "alt_text": "Pyramide olfactive test" +} + +response = requests.post( + media_api_url, + headers=headers, + json=updata_data, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + ) + +# ✅ Lecture et envoi du fichier +"""with open(image_path, "rb") as image_file: + response = requests.post( + media_api_url, + headers=headers, + files={"file": image_file}, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + )""" + +# ✅ Vérifier la réponse +if response.status_code == 201: + media_data = response.json() + image_id = media_data["id"] + image_url = media_data["source_url"] + print(f"✅ Image téléversée avec succès ! ID : {image_id}, URL : {image_url}") +else: + print(f"❌ Erreur lors du téléversement de l'image : {response.status_code}") + print(response.text) # 🔍 Afficher l'erreur détaillée + + +"""def create_image(name, description, source): + images_data = { + "name": name, + "description": description, + "source": source + } + + response = requests.post(media_api_url, headers=headers, json=images_data) + + if response.status_code == 201: + category = response.json() + print(f"✅ Catégorie '{name}' créée avec succès ! ID : {category['id']}") + return category["id"] + else: + print(f"❌ Erreur lors de la création de '{name}' : {response.status_code} {response.text}") + return None""" + +categories_api_url = "https://lescreationsdemissbleue.local/wp-json/wp/v2/product_cat" + + +def upload_image(image_path, image_name): + with open(image_path, "rb") as image_file: + response = requests.post( + media_api_url, + headers={ + "Authorization": f"Basic {auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + if response.status_code == 201: + media_data = response.json() + print(f"✅ Image téléversée : {media_data['source_url']}") + category_parent_id = create_category("Gamme prestige", "Catégorie principale pour organiser la gamme prestige", media_data["id"]) + if category_parent_id: + subcategory_id = create_category("Chopes", "Sous-catégorie de la gamme prestige", category_parent_id, media_data["id"]) + return media_data["id"] # Retourne l'ID de l'image + else: + print(f"❌ Erreur image : {response.status_code} {response.text}") + return None + +# ✅ Boucle sur les images et envoi +uploaded_images = [] +for image_path, image_name in images_to_upload: + image_id = upload_image(image_path, image_name) + print('iciiiiiiiiiiiii') + if image_id: + uploaded_images.append(image_id) + time.sleep(2) # ⏳ Pause pour éviter la surcharge du serveur + +# ✅ Liste des images téléversées avec leur ID +print(f"📌 Images téléversées : {uploaded_images}") \ No newline at end of file diff --git a/api_woocomerce_04042025.py b/api_woocomerce_04042025.py new file mode 100644 index 0000000..ebbc99d --- /dev/null +++ b/api_woocomerce_04042025.py @@ -0,0 +1,1150 @@ +from woocommerce import API as WoocommerceApi +from pathlib import Path +import pandas as pd +import ezodf +import requests +import pprint +import base64 +import time +import json +import pyexcel_ods3 +import unicodedata +import logging +import os +import time + +logger = logging.getLogger(__name__) + +# 1️⃣ Configurer le logger +logging.basicConfig( + filename="woocommerce.log", # 📌 Fichier où les logs seront sauvegardés + level=logging.DEBUG, # 📌 Niveau de log (DEBUG, INFO, WARNING, ERROR, CRITICAL) + format="%(asctime)s - %(levelname)s - %(message)s", # 📌 Format du log + datefmt="%Y-%m-%d %H:%M:%S" # 📌 Format de la date +) + +# via consumer key and consumer secret : +# https://lescreationsdemissbleue.local/wp-json/wc/v3/products?consumer_key=ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e&consumer_secret=cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768 + +wcapi = WoocommerceApi( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False, # Désactive la vérification SSL pour le développement + timeout=30 +) + +class AuthentificationWpApi: + # Identifiants WordPress (et non WooCommerce) + wordpress_username = "admin_lcdm" # Remplace par ton username WordPress + wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + + # Générer l'authentification Basic en base64 + auth_str = f"{wordpress_username}:{wordpress_application_password}" + auth_bytes = auth_str.encode("utf-8") + auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +ath = AuthentificationWpApi() + +WEBSITE_URL = "https://lescreationsdemissbleue.local" +FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\donnees_site_internet_missbleue_corrige.ods" +BASE_PATH = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\photos_site\\Photos_site\\" +#FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods" + +class OdsReader: + def __init__(self, filename_ods=FILENAME_ODS): + self.filename_ods = filename_ods + + def get_all_product_lines(self): + return self.get_doc_ods(2) + + def get_product_by_slug_from_ods(self, slug): + for product in self.get_all_product_lines(): + if product['Slug'] == slug: return product + return None + + def get_all_media_lines(self): + return self.get_doc_ods(0) + + def get_all_attribute_and_tab_lines(self): + return self.get_doc_ods(3) + + def get_all_category_lines(self): + return self.get_doc_ods(1) + + def get_doc_ods(self, number_sheet): + doc = ezodf.opendoc(self.filename_ods) + sheet = doc.sheets[number_sheet] + data = [] + for row in sheet.rows(): + data.append([cell.value for cell in row]) + + df = pd.DataFrame(data) + df.columns = df.iloc[0] + df = df[1:].reset_index(drop=True) + df = df.dropna(how='all') + json_data = df.to_dict(orient="records") + return json_data + +class MediaManager(OdsReader): + + def __init__(self, ath): + super().__init__() + self.ath = ath + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + self.media_api_settings = f"{WEBSITE_URL}/wp-json/wp/v2/settings" + + def upload_media(self): + json_data = self.get_all_media_lines() + for media in json_data: + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + if not self.is_exists(media, image_name): + with open(BASE_PATH + media['Chemin'], "rb") as image_file: + response = requests.post( + self.media_api_url, + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + if response.status_code == 201: + media_data = response.json() + self.update_data_media(media, media_data['id']) + else: + return None + else: + pass + + def is_exists(self, media, image_name): + all_images = self.get_all_images() + name_without_extension, extension = os.path.splitext(image_name) + for image in all_images: + if media['Slug'] == image['slug']: + return True + else: + pass + return False + + + def update_data_media(self, media, id_img): + update_data = { + "title" : media['Nom'], + "alt_text": media['Description'], + "slug": media['Slug'], + } + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + response = requests.post( + f"{self.media_api_url}/{id_img}", + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + json=update_data, + verify=False + ) + + if response.status_code == 200: + return response.json() + else: + return None + + def find_id_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + return img['id'] + + def get_all_as_slug_dict(self): + all_slug_dict = {} + images = self.get_all_images() + for img in images: + all_slug_dict[img['id']] = img['slug'] + return all_slug_dict + + def delete_media_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + delete_url = f"{self.media_api_url}/{img['id']}?force=true" + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + + def get_all_images(self): + """Récupère toutes les images en gérant la pagination""" + all_images = [] + page = 1 + while True: + response = requests.get(f"{self.media_api_url}?per_page=100&page={page}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + if response.status_code != 200: + break + + images = response.json() + if not images: + break + + all_images.extend(images) + page += 1 + + return all_images + + def delete_images(self, images): + """Supprime toutes les images récupérées""" + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + + def delete_all_images(self): + images = self.get_all_images() + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + + def assign_image_logo(self): + images = self.get_all_images() + for img in images: + if img['slug'] == "logo-lescreationsdemissbleue": + data = { + "site_logo":img['id'], + "site_icon" : img['id'] + } + response = requests.post( + self.media_api_settings, + json=data, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + + if response.status_code == 200: + print("Logo mis à jour avec succès !") + else: + print(f"Erreur lors de la mise à jour du logo : {response.text}") + + +class CategoryManager(OdsReader): + + def __init__(self, wcapi, ath, medias=None): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == slug: + return cat['id'] + + def create_category(self, name, description, slug): + category_data = { + "name": name, + "description": description, + "slug":slug + } + if self.find_id_by_slug(slug): + self.error_log.append(f"Catégorie contenant comme slug '{slug}' existe déjà") + else: + self.wcapi.post("products/categories/", category_data) + + def assign_parent_category(self, parent_slug, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + parent_id = self.find_id_by_parent_slug(parent_slug) + if parent_id: + if cat['slug'] == slug: + self.wcapi.put(f"products/categories/{cat['id']}",{'parent': parent_id}) + + def find_id_by_parent_slug(self, parent_slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == parent_slug: + return cat['id'] + + def find_media_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def update_media_id_for_category(self, media_id, cat_id): + response = requests.get(f"{self.media_api_url}/{media_id}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + update_category_data = { + "image" : {'id':media_id}, + } + self.wcapi.put(f"products/categories/{cat_id}", update_category_data) + + def update_data_categories(self): + json_data = self.get_all_category_lines() + for category in json_data: + self.create_category(category['Nom'], category['Description'], category['Slug']) + cat_id = self.find_id_by_slug(category['Slug']) + media_id = self.find_media_id_by_slug(category['Media Slug']) + self.assign_parent_category(category['Parent Slug'], category['Slug']) + self.update_media_id_for_category(media_id,cat_id) + + def delete_all_category(self): + response = self.wcapi.get(f"products/categories",params={"per_page": 100}) + for cat in response.json(): + self.wcapi.delete(f"products/categories/{cat['id']}", params={"force": True}) + + def delete_media_category(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_category_by_id(self, category_id): + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def delete_category_by_slug(self, slug): + category_id = self.find_id_by_slug(slug) + #print(f"category_id = {category_id}") + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def get_errors(self): + return print(f"self.error_log = {self.error_log}") + +class ProductManager(OdsReader): + def __init__(self, wcapi, ath, medias=None): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + + def update_data_list_cat_product(self, list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + self.wcapi.put(f"products/{product_id}", product_data) + + def get_list_media_id_for_product(self, medias): + list_media_id_for_product = [] + for id, media_slug in self.medias.items(): + for media in medias: + if media == media_slug: + image_id = {'id':id} + list_media_id_for_product.append(image_id) + return list_media_id_for_product[::-1] + + def get_list_category_for_product(self, categories): + response = self.wcapi.get("products/categories",params={"per_page": 100}) + list_category_for_product = [] + for category in response.json(): + for cat in categories: + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + return list_category_for_product + + def find_product_by_id(self, id): + response = self.wcapi.get(f"products/{id}") + if response.status_code == 200: + product = response.json() + return product + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/",params={"per_page": 100}) + if response.status_code == 200: + products = response.json() + for pro in products: + if pro['slug'] == slug: + return pro['id'] + + def find_media_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def create_tabs_from_custom_dict(self, product_id, product): + product_tabs_data = {} + list_product_tabs_data = [] + x = 1 + for key in product.keys(): + if key == "Conseils d’utilisation" or key == "Précautions articles" or key == "Description" or key == "Allergènes": + product_tabs_data['title'] = key + product_tabs_data['content'] = product[key] + product_tabs_data['nickname'] = '' + product_tabs_data['position'] = x + product_tabs_data['tab_type'] = 'local' + list_product_tabs_data.append(product_tabs_data) + product_tabs_data = {} + x += 1 + + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + meta_data = [] + meta_data.append( + {'key': 'wb_custom_tabs', 'value': list_product_tabs_data} + ) + meta_data_data = { + 'meta_data': meta_data + } + res = self.wcapi.post(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + def create_product(self, product_data): + if self.find_id_by_slug(product_data['slug']): + self.error_log.append(f"Produit contenant comme slug '{product_data['slug']}' existe déjà") + else: + response = self.wcapi.post("products/", product_data) + + def update_data_product(self, product_data, categories, medias): + json_data = self.get_all_product_lines() + for product in json_data: + self.create_product(product_data) + product_id = self.find_id_by_slug(product_data['slug']) + list_category_id = self.get_list_category_for_product(categories) + list_img_id = self.get_list_media_id_for_product(medias) + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + def update_data_product_by_slug(self, slug): + json_data = self.get_all_product_lines() + for product in json_data: + if product['Slug'] == slug: + self.create_product(product) + product_id = self.find_id_by_slug(product['Slug']) + list_category_id = self.get_list_category_for_product(product['Catégories']) + list_img_id = self.get_list_media_id_for_product(product['Media Slugs']) + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + def get_all_products(self): + """Récupère tous les produits en gérant la pagination""" + all_products = [] + page = 1 + + while True: + response = self.wcapi.get("products", params={"per_page": 100, "page": page}) + + if response.status_code != 200: + print(f"⚠️ Erreur API WooCommerce: {response.status_code} - {response.json()}") + break + + products = response.json() + if not products: # Si la page est vide, on arrête la boucle + break + + all_products.extend(products) + page += 1 # On passe à la page suivante + + return all_products + + + def delete_product(self): + json_data = self.get_all_product_lines() + for product in json_data: + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + if product['Nom'] == pro['name']: + self.wcapi.delete(f"products/{pro['id']}") + + def delete_all_product(self): + products = self.get_all_products() + if products: + for pro in products: + self.wcapi.delete(f"products/{pro['id']}", params={"force": True}) + + def delete_media_product(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_product_by_id(self, product_id): + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + def delete_product_by_slug(self, slug): + product_id = self.find_id_by_slug(slug) + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + + def normalize_string(text): + return unicodedata.normalize("NFKC", text).strip().lower() + + def tab_exists(self, product_id, name_tab): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + response_json = self.wcapi.get(f"products/{product_id}").json() + for meta_data in response_json['meta_data']: + for key_meta_data, value_meta_data in meta_data.items(): + if key_meta_data == "value": + if isinstance(value_meta_data, list): + for tab in value_meta_data: + if name_tab == tab['title']: + return True + return False + +class AttributeManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_attributes(self): + attributes = self.wcapi.get(f"products/attributes").json() + one_attribute = self.wcapi.get(f"products/attributes/1/terms").json() + return attributes + + def get_by_name(self, name): + attributes = self.wcapi.get(f"products/attributes").json() + for attr in attributes: + if attr['name'] == name: + attribute = self.wcapi.get(f"products/attributes/{attr['id']}", params={"per_page": 100}).json() + return attribute + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_all_attribute_and_tab_lines() + for item in json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create(self): + features_json_data = self.get_all_attribute_and_tab_lines() + for item in features_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + attribute_data = { + 'name' : item["Nom"] + } + self.wcapi.post(f"products/attributes", attribute_data) + + def get_term(self): + term_dict = {} + list_item = [] + term_json_data = self.get_all_attribute_and_tab_lines() + for item in term_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + if "," in item["Valeurs"]: + list_item = [value_term.strip() for value_term in item['Valeurs'].split(",")] + else: + item['Valeurs'].strip() + if list_item: + term_dict[item['Nom']] = list_item + else: + term_dict[item['Nom']] = item['Valeurs'] + return term_dict + + def configure_term(self): + term_dict = self.get_term() + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + for name, value in term_dict.items(): + if attribute['name'] == name: + if isinstance(value, list): + for v in value: + term = { + 'name' : v + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + else: + term = { + 'name' : value + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + + + def create_for_product(self, product_id, name, value, variation=False): + data_attribute = { + 'name': name, + 'options':value + } + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_attributes_data = product_meta_data.get("attributes", []) + already_exist = False + for data in existing_attributes_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['name'] == name: + already_exist = True + + if already_exist == False: + found = False + for attribute in existing_attributes_data: + if attribute["name"] == name: + attribute["options"].append(data_attribute) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_attributes_data.append({ + "name": name, + "options": [value], + "visible":True, + "variation": variation, + #"parent_id":product_id + }) + attributes_data = { + 'attributes': existing_attributes_data + } + res = self.wcapi.put(f"products/{product_id}", attributes_data) + else: + print('already_exist') + else: + print(f"error") + + def delete_all_for_product(self): + response_product = self.wcapi.get(f"products/", params={"per_page": 100}) + if response_product.status_code == 200: + products = response_product.json() + for product in products: + existing_attributes_data = product.get("attributes", []) + if existing_attributes_data == []: + pass + else: + attribute_data = { + 'attributes': [] + } + res = self.wcapi.post(f"products/{product['id']}", attribute_data) + + + def delete_all_term(self): + response_attribute = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response_attribute.status_code == 200: + attributes = response_attribute.json() + for attribute in attributes: + response_attribute_term = self.wcapi.get(f"products/attributes/{attribute['id']}/terms", params={"per_page": 100}) + if response_attribute_term.status_code == 200: + attributes_term = response_attribute_term.json() + for term in attributes_term: + self.wcapi.delete(f"products/attributes/{attribute['id']}/terms/{term['id']}",params={"force": True}) + + def delete_all(self): + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + self.wcapi.delete(f"products/attributes/{attribute['id']}",params={"force": True}) + + +class TabManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_all_attribute_and_tab_lines() + for item in json_data: + if item['Onglet'].strip() != "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create_or_update_for_product(self, product_id, tabs): + position = 1 + for title, content in tabs.items(): + position += 1 + data_tab = { + 'title': title, + 'content':content, + 'nickname':'', + 'position':position, + 'tab_type': 'local' + } + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + already_exist = False + for data in existing_meta_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['title'] == title: + already_exist = True + if already_exist == False: + found = False + for meta in existing_meta_data: + if meta["key"] == "wb_custom_tabs": + meta["value"].append(data_tab) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_meta_data.append({ + "key": "wb_custom_tabs", + "value": [data_tab] + }) + meta_data_data = { + 'meta_data': existing_meta_data + } + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print('else') + data_tab = { + 'content':content, + } + meta_data_data = { + 'meta_data': existing_meta_data + } + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + def delete_by_product_id(self, product_id): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product_id}", meta_data) + + def delete_all(self): + response = self.wcapi.get(f"products/", params={"per_page": 100}) + if response.status_code == 200: + product_meta_data = response.json() + for product in product_meta_data: + existing_meta_data = product.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product['id']}", meta_data) + +class VariationsManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_attribute_id(self, product_data): + response = self.wcapi.get(f"products/attributes") + if response.status_code == 200: + attributes = response.json() + for key, value in product_data.items(): + for attr_key, attr_value in attributes.items(): + if attr_value['name'] == key: + attribute_id = attr_value['id'] + return attribute_id + + def update_product_attributes_merged(self, wcapi, product_id, attribute_name, new_options): + """ + Met à jour l'attribut d'un produit WooCommerce en ajoutant de nouvelles options, + sans écraser les autres attributs existants. + + :param wcapi: Instance API WooCommerce (wcapi = API(...)) + :param product_id: ID du produit à mettre à jour + :param attribute_name: Nom de l'attribut à enrichir (ex: "Parfums") + :param new_options: Liste des nouvelles valeurs à ajouter (ex: ["Lavande", "Citron"]) + """ + # Nettoyer les nouvelles options + new_options = [opt.strip() for opt in new_options.split('|') if opt.strip()] + # 1. Récupérer le produit existant + response = wcapi.get(f"products/{product_id}") + if response.status_code != 200: + print(f"❌ Impossible de récupérer le produit {product_id}") + return + + product = response.json() + attributes = product.get("attributes", []) + + # 2. Chercher l'attribut ciblé + found = False + for attr in attributes: + if attr["name"].lower() == attribute_name.lower(): + existing_options = attr.get("options", []) + merged_options = list(set(existing_options + new_options)) + attr["options"] = merged_options + attr["variation"] = True + attr["visible"] = True + attr["parent_id"] = product_id + attr["manage_stock"] = "parent" + found = True + break + + # 3. Si l'attribut n'existe pas, on l'ajoute + if not found: + attributes.append({ + "name": attribute_name, + "variation": True, + "visible": True, + "options": new_options + }) + + # 4. Mettre à jour le produit avec les attributs fusionnés + update_data = { + "attributes": attributes + } + + update_res = wcapi.put(f"products/{product_id}", update_data) + if update_res.status_code == 200: + print(f"✅ Attribut '{attribute_name}' mis à jour avec succès.") + else: + print(f"❌ Erreur lors de la mise à jour : {update_res.status_code}") + print(update_res.json()) + + def create_variations_products(self, product_id, product_data): + #products_lines = self.get_all_product_lines() + product_line = self.get_product_by_slug_from_ods(product_data['slug']) + for product_line_key, products_line_value in product_line.items(): + if product_line_key == "Parfums": + name_attribute = product_line_key + parfums = products_line_value + if product_line_key == "Type": + if product_data['type'] == "variable": + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + existing_product = response.json() + self.update_product_attributes_merged(self.wcapi, product_id=product_id, attribute_name="Parfums", new_options=parfums) + + parfums = [p.strip() for p in parfums.split("|") if p.strip()] + + response = self.wcapi.get(f"products/{product_id}/variations") + + if response.status_code == 200: + for parfum in parfums: + data = { + 'attributes': [ + { + 'name': name_attribute, + 'option': parfum + } + ], + 'manage_stock': False, + 'in_stock':True, + 'regular_price': product_data['price'], + } + print(f"Posting variation: {data}") + result = self.wcapi.post(f"products/{product_id}/variations", data) + print(result.status_code) + pprint.pprint(result.json()) + else: + return False + +class WooCommerceManager(OdsReader): + def __init__(self, wcapi, media_manager, category_manager, product_manager, tab_manager, attribute_manager, variation_manager): + super().__init__() + self.wcapi = wcapi + self.media_manager = media_manager + self.category_manager = category_manager + self.product_manager = product_manager + self.tab_manager = tab_manager + self.attribute_manager = attribute_manager + self.variation_manager = variation_manager + + def tab_exists(self, product_id, name_tab): + return self.product_manager.tab_exists(product_id, name_tab) + + def get_product_tab_details(self): + all_products_json = self.get_all_attribute_and_tab_lines() + all_tabs = self.tab_manager.get_list_name_data() + dict = {} + for product in all_products_json: + line = [] + for tab in all_tabs: + line.append([tab, product[tab]]) + dict[product["Parfum"]] = line + return dict + + def get_product_attributes_details(self): + ret = [] + all_products_json = self.get_all_product_lines() + all_attributes = self.attribute_manager.get_list_name_data() + for product in all_products_json: + for attribute in all_attributes: + ret.append([attribute, product[attribute]]) + return ret + + def update_product_tab_by_slug(self, slug): + product_id = self.product_manager.find_id_by_slug(slug) + product = self.product_manager.find_product_by_id(product_id) + products_tab_details = self.get_product_tab_details() + x=1 + for value in products_tab_details.values(): + for key in products_tab_details.keys(): + for title, content in value: + if key: + if key in product['short_description']: + tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + else: + pass + else: + print('no key') + x=1 + + def update_product_attribute_by_slug(self, slug): + product_id = self.product_manager.find_id_by_slug(slug) + product_ods = self.get_product_by_slug_from_ods(slug) + products_attribute_details = self.get_product_attributes_details() + for name, value in products_attribute_details: + self.attribute_manager.create_for_product(product_id=product_id, + name=name, value=value, + variation=self.is_variable(product_ods['Type'])) + + def update_product(self): + #self.product_manager.update_data_product() + self.update_product_tab() + #self.update_product_attribute() + + """def update_product_by_slug(self): + self.product_manager.update_data_product() + self.update_product_tab() + self.update_product_attribute()""" + + def update_product_variation(self, product_id, product_data): + pass + + def update_product_by_slug(self, slug): + self.product_manager.update_data_product_by_slug(slug) + self.update_product_tab_by_slug(slug) + #self.update_product_attribute_by_slug(slug) + + def create_all_informations(self): + #medias = self.media_manager.get_all_as_slug_dict() + #self.product_manager.medias = medias + #self.update_product_by_slug("chope-citron-meringue") + #self.media_manager.upload_media() + #self.media_manager.assign_image_logo() + medias = self.media_manager.get_all_as_slug_dict() + self.product_manager.medias = medias + #self.category_manager.medias = medias + #self.category_manager.update_data_categories() + #self.attribute_manager.create() + #self.attribute_manager.configure_term() + self.process_file(FILENAME_ODS) + self.update_product() + + def get_list_category_for_product(self, category): + category_list_by_doc = [cat.strip().replace('"', '') for cat in category.split("/")] + return category_list_by_doc + + def get_list_media_id_for_product(self, media): + list_media_by_doc = [img.strip().replace(' ', '') for img in media.split(",")] + return list_media_by_doc + + def is_variable(self, type): + return type.lower() == "parfums" + + def update_product_attribute(self, attributes, product_data): + product_id = self.product_manager.find_id_by_slug(product_data['slug']) + for name, value in attributes.items(): + self.attribute_manager.create_for_product(product_id=product_id, name=name, value=value, variation=self.is_variable(product_data['type'])) + + def update_product_variations(self, product_data): + product_id = self.product_manager.find_id_by_slug(product_data['slug']) + self.variation_manager.create_variations_products(product_id, product_data) + + def update_product_tab(self, product_data): + for product in product_data: + self.update_product_tab_by_id(product['id']) + + + def create_or_update_product(self, product_data, attributes, tabs, categories, medias): + self.product_manager.update_data_product(product_data=product_data, categories=categories, medias=medias) + self.update_product_attribute(attributes=attributes, product_data=product_data) + product_id = self.product_manager.find_id_by_slug(product_data['slug']) + self.update_product_variations(product_data) + self.tab_manager.create_or_update_for_product(product_id=product_id, tabs=tabs) + + + def process_file(self, filename): + # refresh media cache + medias = media_manager.get_all_as_slug_dict() + self.product_manager.medias = medias + # read provided file + reader = OdsReader(filename) + for product_line in reader.get_all_product_lines(): + # standard product data + product_data = { + 'name' : product_line['Nom'], + 'price': product_line['Prix'], + 'regular_price': product_line['Prix'], + 'stock_quantity': product_line['Stock'], + 'manage_stock':True, + 'weight':str(product_line['Poids']), + 'sku':str(product_line['Numéro de référence']), + 'description': product_line['Description'], + 'short_description': product_line['Courte Description'], + 'slug':product_line['Slug'] + } + if product_line['Type'] == "parfums": + product_data['type'] = "variable" + else: + product_data['type'] = "simple" + + attributes = { + "Temps de combustion" : product_line['Temps de combustion'], + "Type de cire" : product_line['Type de cire'], + "Mèche" : product_line['Mèche'], + "Fabrication" : product_line['Fabrication'], + "Composition" : product_line['Composition'], + "Ingrédients et engagements" : product_line['Ingrédients et engagements'], + "Parfums" : product_line['Parfums'] + } + + tabs ={ + #"Description" : product_line["Description"], + "Conseils d'utilisation" : product_line["Conseils d’utilisation"], + "Précautions articles" : product_line["Précautions articles"], + #"Allergènes" : product_line["Allergènes"] + } + # ... associated categories + categories = self.get_list_category_for_product(product_line['Catégories']) + + # ... associated medias + medias = self.get_list_media_id_for_product(product_line['Media Slugs']) + + # create or update product + self.create_or_update_product(product_data=product_data, attributes=attributes, tabs=tabs, categories=categories, medias=medias) + + + """def put_social_data(self): + response = requests.post(url, + auth=HTTPBasicAuth("consumer_key", "consumer_secret"), + json={ + "acf": { + "instagram_url": "https://instagram.com/ton_compte" + } + } + )""" + + def delete_all_informations(self): + self.media_manager.delete_all_images() + self.attribute_manager.delete_all() + self.product_manager.delete_all_product() + self.category_manager.delete_all_category() + + def delete_information_by_slug(self): + product_manager.delete_product_by_slug("chope-adoucissant") + #category_manager.delete_all_category() + +#ALL_TABS = ["Allergènes", "Conseils d’utilisation", "Description", "Précautions articles"] +#ALL_ATTRIBUTES = ["Temps de combustion", "Type de cire", "Mèche", "Fabrication", "Composition", "Ingrédients et engagement"] + +media_manager = MediaManager(ath=ath) +#media_manager.upload_media() +#media_manager.delete_all_images() +#media_manager.assign_image_logo() +category_manager = CategoryManager(wcapi=wcapi,ath=ath) +#category_manager.delete_all_category() +product_manager = ProductManager(wcapi=wcapi,ath=ath) +#product_manager.delete_all_product() +#medias=media_manager.get_all_as_slug_dict() +#media_manager.delete_media_by_slug('pyramide-olfactive-frangipanier') +#product_manager.delete_product_by_slug("citron-meringue") +#product_manager.update_data_product() +tab_manager = TabManager(wcapi=wcapi) +attribute_manager = AttributeManager(wcapi=wcapi) +variation_manager = VariationsManager(wcapi=wcapi) +#attribute_manager.create(ALL_ATTRIBUTES) +#attribute_manager.create() +#attribute_manager.configure_term() +#attribute_manager.delete_all_term() +#product_id = product_manager.find_id_by_slug("citron-meringue")""" +woocommerce_manager = WooCommerceManager(wcapi=wcapi, media_manager=media_manager,category_manager=category_manager,product_manager=product_manager, tab_manager=tab_manager, attribute_manager=attribute_manager, variation_manager=variation_manager) +##woocommerce_manager.delete_all_informations() # +woocommerce_manager.create_all_informations() +##woocommerce_manager.process_file(FILENAME_ODS) +#category_manager.update_data_categories() +#woocommerce_manager.delete_all_informations() +#woocommerce_manager.delete_information_by_slug() +#woocommerce_manager.create_all_informations() +#woocommerce_manager.create_all_categories_and_products() +#woocommerce_manager.update_product_tab() +#woocommerce_manager.tab_manager.delete_by_product_id(1890) +#woocommerce_manager.tab_manager.delete_all() +#woocommerce_manager.update_product() +#woocommerce_manager.attribute_manager.delete_all_for_product() +#woocommerce_manager.update_product_attribute_by_slug('citron-meringue') +#woocommerce_manager.attribute_manager.delete_all_for_product() + +"""tabs_in_product = [] +for tab in ALL_TABS: + tab_in_product = woocommerce_manager.tab_exists(1890, tab) + tabs_in_product.append(tab_in_product)""" + +""" +utilisation +module argparse +# on va appeler ça importation d'un fichier ods, d'où l'action import-ods +# on va appeler cette commande, "la commande de base" +wcctl --wc-url=https://lescreationsdemissbleue.local --wc-key= --wc-secret= import-ods --ods-path=fichier.ods + +# traitement de l'intégralité d'un fichier ods +... --all + +# traitement des medias seulement, on peut en option spécifier une plage de média à importer +... --medias [--media-range=1:40] + +plu tard ... +# traitement des catégories seulement, on peut en option spécifier une expression régulière qui va s'appliquer au nom de la catégorie +... --categories [--categories-regex=] +ex: traiter uniquement les catégories dont le nom contient le terme "bougie" +... --categories [--categories-regex=.*bougie.*] + +# traitement des articles seulement, on peut en option spécifier une expression régulière qui va s'appliquer au nom de l'article' +# ... --products [--products-regex=] +ex: traiter uniquement les articles dont le nom contient le terme "bougie" +... --categories [--products-regex=.*bougie.*] + + +""" \ No newline at end of file diff --git a/api_woocommerce.py b/api_woocommerce.py new file mode 100644 index 0000000..8bf185b --- /dev/null +++ b/api_woocommerce.py @@ -0,0 +1,1339 @@ +from woocommerce import API as WoocommerceApi +from pathlib import Path +import pandas as pd +import ezodf +import requests +import pprint +import base64 +import time +import json +import pyexcel_ods3 +import unicodedata +import logging +import os +import time + +logger = logging.getLogger(__name__) + +# 1️⃣ Configurer le logger +logging.basicConfig( + filename="woocommerce.log", # 📌 Fichier où les logs seront sauvegardés + level=logging.DEBUG, # 📌 Niveau de log (DEBUG, INFO, WARNING, ERROR, CRITICAL) + format="%(asctime)s - %(levelname)s - %(message)s", # 📌 Format du log + datefmt="%Y-%m-%d %H:%M:%S" # 📌 Format de la date +) + +# via consumer key and consumer secret : +# https://lescreationsdemissbleue.local/wp-json/wc/v3/products?consumer_key=ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e&consumer_secret=cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768 + +wcapi = WoocommerceApi( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False, # Désactive la vérification SSL pour le développement + timeout=30 +) + +class AuthentificationWpApi: + # Identifiants WordPress (et non WooCommerce) + wordpress_username = "admin_lcdm" # Remplace par ton username WordPress + wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + + # Générer l'authentification Basic en base64 + auth_str = f"{wordpress_username}:{wordpress_application_password}" + auth_bytes = auth_str.encode("utf-8") + auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +ath = AuthentificationWpApi() + +WEBSITE_URL = "https://lescreationsdemissbleue.local" +FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\donnees_site_internet_missbleue_corrige.ods" +BASE_PATH = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\photos_site\\Photos_site\\" +#FILENAME_ODS = "C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods" + +class OdsReader: + def __init__(self, filename_ods=FILENAME_ODS): + self.filename_ods = filename_ods + + def get_all_product_lines(self): + return self.get_doc_ods(2) + + def get_all_media_lines(self): + return self.get_doc_ods(0) + + def get_all_attribute_and_tab_lines(self): + return self.get_doc_ods(3) + + def get_all_attribute_details_lines(self): + return self.get_doc_ods(2) + + def get_all_category_lines(self): + return self.get_doc_ods(1) + + def get_doc_ods(self, number_sheet): + doc = ezodf.opendoc(self.filename_ods) + #sheets_list = list(doc.sheets) + sheet = doc.sheets[number_sheet] + data = [] + for row in sheet.rows(): + data.append([cell.value for cell in row]) + + df = pd.DataFrame(data) + df.columns = df.iloc[0] + df = df[1:].reset_index(drop=True) + df = df.dropna(how='all') + json_data = df.to_dict(orient="records") + return json_data + +class MediaManager(OdsReader): + + def __init__(self, ath): + super().__init__() + self.ath = ath + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + self.media_api_settings = f"{WEBSITE_URL}/wp-json/wp/v2/settings" + + def upload_media(self): + json_data = self.get_all_media_lines() + for media in json_data: + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + #print(f"media['Chemin'] = {media['Chemin']} = image_name {image_name}") + if not self.is_exists(media, image_name): + #print(f'path = {path}') + with open(BASE_PATH + media['Chemin'], "rb") as image_file: + response = requests.post( + self.media_api_url, + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + #print(f'response.status_code = {response.status_code}, response_text = {response.text}') + if response.status_code == 201: + media_data = response.json() + #print(f"media_data['slug'] = {media_data['slug']}") + self.update_data_media(media, media_data['id']) + else: + return None + else: + pass + #print("passe la") + + def is_exists(self, media, image_name): + all_images = self.get_all_images() + #pprint.pprint(all_images) + name_without_extension, extension = os.path.splitext(image_name) + #pprint.pprint(media) + for image in all_images: + #print('uuuuuuuuuuuuuuuuuuuuuu') + #pprint.pprint(image['title']['rendered']) + #print(f"image_name = {image_name}") + #print(f"name_without_extension= {name_without_extension}, image = {image['slug']}, image = {image['id']}, ") + if media['Slug'] == image['slug']: + #print('True') + return True + else: + pass + #print('False') + return False + + """def is_already_exist(self): + json_data = self.get_doc_ods(0) + print('passe ici') + for media in json_data: + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + print(f'path = {path}') + with open(BASE_PATH + media['Chemin'], "rb") as image_file: + response = requests.get( + self.media_api_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + #files={"file": image_file}, + verify=False + ) + #print(f'response.status_code = {response.status_code}, response_text = {response.text}') + if response.status_code == 200: + media_data = response.json() + for media in media_data: + #pprint.pprint(media) + #print(f"media_data['slug'] = {media_data['slug']}") + print(f"media_data_id = {media['id']}") + else: + return None""" + + def update_data_media(self, media, id_img): + update_data = { + "title" : media['Nom'], + "alt_text": media['Description'], + "slug": media['Slug'], + } + path = Path(BASE_PATH + media['Chemin']) + image_name = path.name + response = requests.post( + f"{self.media_api_url}/{id_img}", + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + json=update_data, + verify=False + ) + + if response.status_code == 200: + return response.json() + else: + return None + + def find_id_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + return img['id'] + + def get_all_as_slug_dict(self): + all_slug_dict = {} + images = self.get_all_images() + #pprint.pprint(images) + for img in images: + all_slug_dict[img['id']] = img['slug'] + return all_slug_dict + + def delete_media_by_slug(self, slug): + images = self.get_all_images() + for img in images: + if img['slug'] == slug: + delete_url = f"{self.media_api_url}/{img['id']}?force=true" + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + + def get_all_images(self): + """Récupère toutes les images en gérant la pagination""" + all_images = [] + page = 1 + while True: + response = requests.get(f"{self.media_api_url}?per_page=100&page={page}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + if response.status_code != 200: + break + + images = response.json() + if not images: + break + + all_images.extend(images) + page += 1 + + return all_images + + def delete_images(self, images): + """Supprime toutes les images récupérées""" + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + + def delete_all_images(self): + images = self.get_all_images() + for img in images: + img_id = img['id'] + delete_url = f"{self.media_api_url}/{img_id}?force=true" + + response = requests.delete(delete_url, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False) + if response.status_code in [200, 410]: # 410 = déjà supprimé + print(f"Image {img_id} supprimée.") + else: + print(f"Erreur suppression {img_id} :", response.status_code, response.text) + + def assign_image_logo(self): + images = self.get_all_images() + for img in images: + #pprint.pprint(img['slug']) + if img['slug'] == "logo-lescreationsdemissbleue": + data = { + "site_logo":img['id'], + "site_icon" : img['id'] + } + response = requests.post( + self.media_api_settings, + json=data, + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + + if response.status_code == 200: + print("Logo mis à jour avec succès !") + else: + print(f"Erreur lors de la mise à jour du logo : {response.text}") + +"""response = requests.post( + self.media_api_url, + headers={ + "Authorization": f"Basic {self.ath.auth_base64}", + #"Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + )""" + +"""category_manager = CategoryManager(api=api, medias=media_manager.get_all_as_slug_dict()) +category_manager.create(name, short_description, description, )""" + +class CategoryManager(OdsReader): + + def __init__(self, wcapi, ath, medias=None): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + #print(f"response.status_code = {response.status_code}") + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == slug: + #pprint.pprint(cat) + return cat['id'] + + def create_category(self, name, description, slug): + category_data = { + "name": name, + "description": description, + "slug":slug + } + if self.find_id_by_slug(slug): + self.error_log.append(f"Catégorie contenant comme slug '{slug}' existe déjà") + else: + self.wcapi.post("products/categories/", category_data) + + def assign_parent_category(self, parent_slug, slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + parent_id = self.find_id_by_parent_slug(parent_slug) + if parent_id: + if cat['slug'] == slug: + self.wcapi.put(f"products/categories/{cat['id']}",{'parent': parent_id}) + + def find_id_by_parent_slug(self, parent_slug): + response = self.wcapi.get("products/categories/",params={"per_page": 100}) + if response.status_code == 200: + categories = response.json() + for cat in categories: + if cat['slug'] == parent_slug: + return cat['id'] + + def find_media_id_by_slug(self, media_slug): + #print(f"media_slug = {media_slug}") + #print(f"media_dict = {self.medias.items()}") + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def update_media_id_for_category(self, media_id, cat_id): + #print(f"media_id = {media_id}, cat_id = {cat_id}") + response = requests.get(f"{self.media_api_url}/{media_id}", + headers={"Authorization": f"Basic {self.ath.auth_base64}"}, + verify=False + ) + #print(response.json()) + #print(response.json().get("id")) + #print('coucou') + update_category_data = { + "image" : {'id':media_id}, + } + self.wcapi.put(f"products/categories/{cat_id}", update_category_data) + + def update_data_categories(self): + json_data = self.get_all_category_lines() + for category in json_data: + self.create_category(category['Nom'], category['Description'], category['Slug']) + cat_id = self.find_id_by_slug(category['Slug']) + media_id = self.find_media_id_by_slug(category['Media Slug']) + self.assign_parent_category(category['Parent Slug'], category['Slug']) + self.update_media_id_for_category(media_id,cat_id) + + def delete_all_category(self): + response = self.wcapi.get(f"products/categories",params={"per_page": 100}) + for cat in response.json(): + self.wcapi.delete(f"products/categories/{cat['id']}", params={"force": True}) + + def delete_media_category(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_category_by_id(self, category_id): + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def delete_category_by_slug(self, slug): + category_id = self.find_id_by_slug(slug) + #print(f"category_id = {category_id}") + self.wcapi.delete(f"products/categories/{category_id}", params={"force": True}) + + def get_errors(self): + return print(f"self.error_log = {self.error_log}") + +class ProductManager(OdsReader): + def __init__(self, wcapi, ath, medias=None): + super().__init__() + self.wcapi = wcapi + self.ath = ath + self.medias = medias + self.error_log = [] + self.headers = { + "Authorization": f"Basic {self.ath.auth_base64}", + "Content-Type": "application/json" + } + self.media_api_url = f"{WEBSITE_URL}/wp-json/wp/v2/media" + + def update_data_list_cat_product(self, list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + #print(f"product_id = {product_id}") + self.wcapi.put(f"products/{product_id}", product_data) + + def get_list_media_id_for_product(self, medias): + #media_id = {} + list_media_id_for_product = [] + #list_media_by_doc = [img.strip().replace(' ', '') for img in product.split(",")] + #pprint.pprint(self.uploaded_images_pro) + #print(f'list_media_by_doc = {list_media_by_doc}') + for id, media_slug in self.medias.items(): + for media in medias: + if media == media_slug: + image_id = {'id':id} + list_media_id_for_product.append(image_id) + #print(f"list_image_id_for_product = {list_media_id_for_product}") + return list_media_id_for_product[::-1] + + + def get_list_category_for_product(self, categories): + response = self.wcapi.get("products/categories",params={"per_page": 100}) + list_category_for_product = [] + for category in response.json(): + for cat in categories: + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + return list_category_for_product + + """def get_list_category_for_product(self, product): + response = self.wcapi.get("products/categories",params={"per_page": 100}) + category_list_by_doc = [cat.strip().replace('"', '') for cat in product.split("/")] + list_category_for_product = [] + for category in response.json(): + for cat in category_list_by_doc: + #print(f"category['name'] = {category['name']}") + #print(f"cat = {cat}") + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + #print(f'list_category_for_product = {list_category_for_product}') + return list_category_for_product""" + + def find_product_by_id(self, id): + response = self.wcapi.get(f"products/{id}") + if response.status_code == 200: + product = response.json() + pprint.pprint(product) + return product + + def find_id_by_slug(self, slug): + response = self.wcapi.get("products/",params={"per_page": 100}) + if response.status_code == 200: + products = response.json() + #print("products find_id_by_slug") + #pprint.pprint(products) + for pro in products: + #print(f"product['slug'] = {pro['slug']}, slug = {slug}") + if pro['slug'] == slug: + #print(f"pro_id = {pro['id']}") + return pro['id'] + + def find_media_id_by_slug(self, media_slug): + for id, slug in self.medias.items(): + if media_slug == slug: + return id + + def create_tabs_from_custom_dict(self, product_id, product): + print(f"create_tabs = {product_id}") + product_tabs_data = {} + list_product_tabs_data = [] + x = 1 + for key in product.keys(): + #key = key.replace("’", "'") + if key == "Conseils d’utilisation" or key == "Précautions articles" or key == "Description" or key == "Allergènes": + product_tabs_data['title'] = key + product_tabs_data['content'] = product[key] + product_tabs_data['nickname'] = '' + product_tabs_data['position'] = x + product_tabs_data['tab_type'] = 'local' + list_product_tabs_data.append(product_tabs_data) + product_tabs_data = {} + x += 1 + + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + #product_response = response.json() + meta_data = [] + meta_data.append( + {'key': 'wb_custom_tabs', 'value': list_product_tabs_data} + ) + + meta_data_data = { + 'meta_data': meta_data + } + #pprint.pprint(meta_data_data) + res = self.wcapi.post(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + """def create_product(self, product): + product_data = { + 'name' : product['Nom'], + 'price': product['Prix'], + 'regular_price': product['Prix'], + 'stock_quantity': 1, + 'manage_stock':True, + 'weight':str(product['Poids']), + 'sku':str(product['Numéro de référence']), + #'description': product['Description'], + 'short_description': product['Courte Description'], + 'slug':product['Slug'] + } + #print(f"product_data = {product_data}") + #print(f"product['Prix'] = {product['Prix']}") + if self.find_id_by_slug(product['Slug']): + #print('la') + self.error_log.append(f"Produit contenant comme slug '{product['Slug']}' existe déjà") + else: + #print('ici') + response = self.wcapi.post("products/", product_data) + #print(f"print(response.text) = {response.text}") + #print(f"response.status_code = {response.status_code}") + #pprint.pprint(response.json())""" + + def create_product(self, product_data): + if self.find_id_by_slug(product_data['slug']): + self.error_log.append(f"Produit contenant comme slug '{product_data['slug']}' existe déjà") + else: + response = self.wcapi.post("products/", product_data) + + + def update_data_product(self, product_data, categories, medias): + json_data = self.get_all_product_lines() + for product in json_data: + self.create_product(product_data) + product_id = self.find_id_by_slug(product_data['slug']) + list_category_id = self.get_list_category_for_product(categories) + list_img_id = self.get_list_media_id_for_product(medias) + #print(f"list_category_id = {list_category_id}") + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + #self.create_tabs_from_custom_dict(product_id, product) + def update_data_product_by_slug(self, slug): + json_data = self.get_all_product_lines() + for product in json_data: + print('blabla') + if product['Slug'] == slug: + print('coucou') + self.create_product(product) + #pprint.pprint(product) + product_id = self.find_id_by_slug(product['Slug']) + #print(f"product_id_in_update_data_product = {product_id}") + list_category_id = self.get_list_category_for_product(product['Catégories']) + list_img_id = self.get_list_media_id_for_product(product['Media Slugs']) + #print(f"list_category_id = {list_category_id}") + self.update_data_list_cat_product(list_category_id, list_img_id, product_id) + + def get_all_products(self): + """Récupère tous les produits en gérant la pagination""" + all_products = [] + page = 1 + + while True: + response = self.wcapi.get("products", params={"per_page": 100, "page": page}) + + if response.status_code != 200: + print(f"⚠️ Erreur API WooCommerce: {response.status_code} - {response.json()}") + break + + products = response.json() + if not products: # Si la page est vide, on arrête la boucle + break + + all_products.extend(products) + page += 1 # On passe à la page suivante + + #pprint.pprint(all_products) + return all_products + + + def delete_product(self): + json_data = self.get_all_product_lines() + for product in json_data: + list_products = self.wcapi.get(f"products/") + for pro in list_products.json(): + if product['Nom'] == pro['name']: + self.wcapi.delete(f"products/{pro['id']}") + + def delete_all_product(self): + products = self.get_all_products() + #print(f"products = {products}") + if products: + for pro in products: + self.wcapi.delete(f"products/{pro['id']}", params={"force": True}) + + def delete_media_product(self, media_slug): + media_id = self.find_media_id_by_slug(media_slug) + requests.delete( + f"{self.media_api_url}/{media_id['id']}", + headers=self.headers, + verify=False + ) + + def delete_product_by_id(self, product_id): + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + def delete_product_by_slug(self, slug): + product_id = self.find_id_by_slug(slug) + #print(f"product_id = {product_id}") + self.wcapi.delete(f"products/{product_id}", params={"force": True}) + + + def normalize_string(text): + return unicodedata.normalize("NFKC", text).strip().lower() + + def tab_exists(self, product_id, name_tab): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + response_json = self.wcapi.get(f"products/{product_id}").json() + for meta_data in response_json['meta_data']: + for key_meta_data, value_meta_data in meta_data.items(): + if key_meta_data == "value": + if isinstance(value_meta_data, list): + for tab in value_meta_data: + if name_tab == tab['title']: + return True + return False + +class AttributeManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_attributes(self): + attributes = self.wcapi.get(f"products/attributes").json() + one_attribute = self.wcapi.get(f"products/attributes/1/terms").json() + return attributes + + def get_by_name(self, name): + attributes = self.wcapi.get(f"products/attributes").json() + for attr in attributes: + if attr['name'] == name: + attribute = self.wcapi.get(f"products/attributes/{attr['id']}", params={"per_page": 100}).json() + return attribute + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_all_attribute_and_tab_lines() + for item in json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create(self): + features_json_data = self.get_all_attribute_and_tab_lines() + for item in features_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + print(f"nom = {item['Nom']}") + attribute_data = { + 'name' : item["Nom"] + } + self.wcapi.post(f"products/attributes", attribute_data) + + def get_term(self): + term_dict = {} + list_item = [] + term_json_data = self.get_all_attribute_and_tab_lines() + for item in term_json_data: + if item['Onglet'].strip() == "Informations Complémentaires": + #print(f"item['Valeurs'] = {item['Valeurs']}") + if "," in item["Valeurs"]: + list_item = [value_term.strip() for value_term in item['Valeurs'].split(",")] + else: + item['Valeurs'].strip() + if list_item: + term_dict[item['Nom']] = list_item + else: + term_dict[item['Nom']] = item['Valeurs'] + return term_dict + + def configure_term(self): + term_dict = self.get_term() + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + for name, value in term_dict.items(): + if attribute['name'] == name: + if isinstance(value, list): + for v in value: + term = { + 'name' : v + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + else: + term = { + 'name' : value + } + self.wcapi.post(f"products/attributes/{attribute['id']}/terms", term) + + def create_for_product(self, product_id, name, value): + data_attribute = { + 'name': name, + 'options':value + } + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + print('iciiiiiiiiiiiiii') + product_meta_data = response.json() + existing_attributes_data = product_meta_data.get("attributes", []) + #pprint.pprint(existing_attributes_data) + already_exist = False + pprint.pprint(existing_attributes_data) + for data in existing_attributes_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['name'] == name: + already_exist = True + + if already_exist == False: + found = False + for attribute in existing_attributes_data: + if attribute["name"] == name: + attribute["options"].append(data_attribute) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_attributes_data.append({ + "name": name, + "options": [value], + "visible":True, + }) + attributes_data = { + 'attributes': existing_attributes_data + } + #pprint.pprint(attributes_data) + print('laaaaaaaaaaaaaaa') + res = self.wcapi.put(f"products/{product_id}", attributes_data) + else: + print('already_exist') + else: + print(f"error") + + def delete_all_for_product(self): + response_product = self.wcapi.get(f"products/", params={"per_page": 100}) + if response_product.status_code == 200: + products = response_product.json() + for product in products: + existing_attributes_data = product.get("attributes", []) + if existing_attributes_data == []: + pass + else: + attribute_data = { + 'attributes': [] + } + res = self.wcapi.post(f"products/{product['id']}", attribute_data) + + + def delete_all_term(self): + response_attribute = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response_attribute.status_code == 200: + attributes = response_attribute.json() + for attribute in attributes: + response_attribute_term = self.wcapi.get(f"products/attributes/{attribute['id']}/terms", params={"per_page": 100}) + if response_attribute_term.status_code == 200: + attributes_term = response_attribute_term.json() + for term in attributes_term: + self.wcapi.delete(f"products/attributes/{attribute['id']}/terms/{term['id']}",params={"force": True}) + + def delete_all(self): + response = self.wcapi.get(f"products/attributes", params={"per_page": 100}) + if response.status_code == 200: + attributes = response.json() + for attribute in attributes: + self.wcapi.delete(f"products/attributes/{attribute['id']}",params={"force": True}) + + +class TabManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_list_name_data(self): + list_name_data = [] + json_data = self.get_all_attribute_and_tab_lines() + for item in json_data: + if item['Onglet'].strip() != "Informations Complémentaires": + list_name_data.append(item['Nom']) + return list_name_data + + def create_or_update_for_product(self, product_id, tabs): + position = 1 + for title, content in tabs.items(): + position += 1 + data_tab = { + 'title': title, + 'content':content, + 'nickname':'', + 'position':position, + 'tab_type': 'local' + } + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + + print('_____________________') + pprint.pprint(existing_meta_data) + already_exist = False + for data in existing_meta_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['title'] == title: + print(f"value_title = {title}") + already_exist = True + print(f"already_exist = {already_exist}") + if already_exist == False: + found = False + for meta in existing_meta_data: + if meta["key"] == "wb_custom_tabs": + meta["value"].append(data_tab) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_meta_data.append({ + "key": "wb_custom_tabs", + "value": [data_tab] + }) + meta_data_data = { + 'meta_data': existing_meta_data + } + #pprint.pprint(meta_data_data) + #print(f"product_id = {product_id}") + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print('else') + data_tab = { + 'content':content, + } + meta_data_data = { + 'meta_data': existing_meta_data + } + print('yoooooooooooooooooooooooooooooooooooooooooooooooooo') + #pprint.pprint(meta_data_data) + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print(f"error") + + + """def create_for_product(self, product_id, title, content, nickname, position, tab_type): + logger.info(f"create_for_product(product_id={product_id}, title={title}, content={str(content)[:20]}, nickname={nickname}, position={position}, tab_type={tab_type}) called") + print(f"create_for_product(product_id={product_id}, title={title}, content={str(content)[:20]}, nickname={nickname}, position={position}, tab_type={tab_type}) called") + data_tab = { + 'title': title, + 'content':content, + 'nickname':nickname, + 'position':position, + 'tab_type':tab_type + } + print('data_tab') + #pprint.pprint(data_tab) + #list_product_tabs_data.append(data_tab) + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + if position == 1: + existing_meta_data = product_meta_data.get("meta_data", []) + else: + existing_meta_data = [] + + print('_____________________') + pprint.pprint(existing_meta_data) + already_exist = False + for data in existing_meta_data: + for key_data, value_data in data.items(): + if key_data == "value": + if isinstance(value_data, list): + for value in value_data: + if value['title'] == title: + print(f"value_title = {title}") + already_exist = True + print(f"already_exist = {already_exist}") + if already_exist == False: + found = False + for meta in existing_meta_data: + if meta["key"] == "wb_custom_tabs": + meta["value"].append(data_tab) + found = True + break + + # Si l'onglet `wb_custom_tabs` n'existe pas, on le crée + if not found: + existing_meta_data.append({ + "key": "wb_custom_tabs", + "value": [data_tab] + }) + meta_data_data = { + 'meta_data': existing_meta_data + } + #pprint.pprint(meta_data_data) + #print(f"product_id = {product_id}") + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print('else') + data_tab = { + 'content':content, + } + meta_data_data = { + 'meta_data': existing_meta_data + } + print('yoooooooooooooooooooooooooooooooooooooooooooooooooo') + #pprint.pprint(meta_data_data) + res = self.wcapi.put(f"products/{product_id}", meta_data_data) + else: + print(f"error")""" + + def delete_by_product_id(self, product_id): + response = self.wcapi.get(f"products/{product_id}") + if response.status_code == 200: + product_meta_data = response.json() + existing_meta_data = product_meta_data.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product_id}", meta_data) + + def delete_all(self): + response = self.wcapi.get(f"products/", params={"per_page": 100}) + if response.status_code == 200: + product_meta_data = response.json() + for product in product_meta_data: + existing_meta_data = product.get("meta_data", []) + if existing_meta_data == []: + pass + else: + meta_data = { + 'meta_data': [{"key": "wb_custom_tabs","value":[]}] + } + res = self.wcapi.post(f"products/{product['id']}", meta_data) + +class VariationsManager(OdsReader): + + def __init__(self, wcapi): + super().__init__() + self.wcapi = wcapi + + def get_attribute_id(self, product_data): + response = self.wcapi.get(f"products/attributes") + if response.status_code == 200: + attributes = response.json() + for key, value in product_data.items(): + for attr_key, attr_value in attributes.items(): + if attr_value['name'] == key: + attribute_id = attr_value['id'] + return attribute_id + + def create_variations_products(self, product_id, product_data): + response = self.wcapi.get(f"products/{product_id}/variations") + if response.status_code == 200: + product_variation = response.json() + for parfum in product_data['Parfums']: + data = { + 'parent_id' : product_id + #'attributes' = + } + res = self.wcapi.post(f"products/{product_id}", ) + +class WooCommerceManager(OdsReader): + def __init__(self, wcapi, media_manager, category_manager, product_manager, tab_manager, attribute_manager): + super().__init__() + self.wcapi = wcapi + self.media_manager = media_manager + self.category_manager = category_manager + self.product_manager = product_manager + self.tab_manager = tab_manager + self.attribute_manager = attribute_manager + + def tab_exists(self, product_id, name_tab): + return self.product_manager.tab_exists(product_id, name_tab) + + #tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + + def get_product_tab_details(self): + ret = [] + print('yoooooo') + all_products_json = self.get_all_attribute_and_tab_lines() + all_tabs = self.tab_manager.get_list_name_data() + print('passe la') + dict = {} + for product in all_products_json: + #print('product_product') + #pprint.pprint(product) + line = [] + for tab in all_tabs: + line.append([tab, product[tab]]) + dict[product["Parfum"]] = line + #ret.append(dict) + #pprint.pprint(ret) + pprint.pprint(dict) + #return ret + return dict + + def get_product_attributes_details(self): + ret = [] + all_products_json = self.get_all_attribute_details_lines() + all_attributes = self.attribute_manager.get_list_name_data() + for product in all_products_json: + for attributes in all_attributes: + ret.append([attributes, product[attributes]]) + return ret + + """def update_product_tab_by_id(self, product_id): + products_tab_details = self.get_product_tab_details()""" + + """for product in products: + #pprint.pprint(product) + x=1 + for item in product['meta_data'][0]['value']: + for key, value in item.items(): + print(f"key = {key}, value = {value}") + #print(f"len = {len(products)}") + for title, content in products_tab_details: + print(f"products_tab_details = ") + pprint.pprint(products_tab_details) + if value == title: + print(f"title = {title}") + tab_manager.create_for_product(product_id=product['id'], title=title, content=content, nickname="", position=x, tab_type="local") + print("laalala") + x=x+1""" + """ + x=1 + for title, content in products_tab_details: + tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + if x == 3: + x=1 + """ + + """def update_product_tab(self): + products = self.product_manager.get_all_products() + for product in products: + self.update_product_tab_by_id(product['id'])""" + + """def update_product_attribute(self): + products_attributes_details = self.get_product_attributes_details() + products = self.product_manager.get_all_products() + for product in products: + for name, value in products_attributes_details: + self.attribute_manager.create_for_product(product_id=product['id'], name=name, value=value)""" + + def update_product_tab_by_slug(self, slug): + product_id = self.product_manager.find_id_by_slug(slug) + print('youpi') + product = self.product_manager.find_product_by_id(product_id) + #pprint.pprint(product) + products_tab_details = self.get_product_tab_details() + x=1 + #print('ici') + #pprint.pprint(products_tab_details) + #for title, content in products_tab_details: + + #pprint.pprint(products_tab_details.values()) + #print(type(products_tab_details.values())) + for value in products_tab_details.values(): + #print("value") + #pprint.pprint(value) + for key in products_tab_details.keys(): + for title, content in value: + #print(f"key = {key}") + if key: + if key in product['short_description']: + """print(f"key = {key}") + print(f"short_description = {product['short_description']}") + print(f"content = {content}") + print('?')""" + #print(f"key = {key}") + #print(f"products_tab_details = {products_tab_details}") + tab_manager.create_for_product(product_id=product_id, title=title, content=content, nickname="", position=x, tab_type="local") + x=x+1 + else: + pass + else: + print('no key') + x=1 + + def update_product_attribute_by_slug(self, slug): + product_id = self.product_manager.find_id_by_slug(slug) + products_attribute_details = self.get_product_attributes_details() + for name, value in products_attribute_details: + #print(f"name = {name}, valuee = {value}") + self.attribute_manager.create_for_product(product_id=product_id, name=name, value=value) + + def update_product(self): + #self.product_manager.update_data_product() + self.update_product_tab() + #self.update_product_attribute() + + """def update_product_by_slug(self): + self.product_manager.update_data_product() + self.update_product_tab() + self.update_product_attribute()""" + + def update_product_variation(self, product_id, product_data): + pass + + def update_product_by_slug(self, slug): + self.product_manager.update_data_product_by_slug(slug) + self.update_product_tab_by_slug(slug) + #self.update_product_attribute_by_slug(slug) + + def create_all_informations(self): + #medias = self.media_manager.get_all_as_slug_dict() + #self.product_manager.medias = medias + #self.update_product_by_slug("chope-adoucissant") + #self.media_manager.upload_media() + self.media_manager.assign_image_logo() + medias = self.media_manager.get_all_as_slug_dict() + #self.product_manager.medias = medias + self.category_manager.medias = medias + self.category_manager.update_data_categories() + #self.attribute_manager.create() + #self.attribute_manager.configure_term() + #self.process_file(FILENAME_ODS)""" + #self.update_product() + + def get_list_category_for_product(self, category): + category_list_by_doc = [cat.strip().replace('"', '') for cat in category.split("/")] + return category_list_by_doc + + def get_list_media_id_for_product(self, media): + list_media_by_doc = [img.strip().replace(' ', '') for img in media.split(",")] + return list_media_by_doc + + def update_product_attribute(self, attributes, product_data): + product_id = self.product_manager.find_id_by_slug(product_data['slug']) + #products_attributes_details = self.get_product_attributes_details() + for name, value in attributes.items(): + print(f"name = {name}, value = {value}") + self.attribute_manager.create_for_product(product_id=product_id, name=name, value=value) + + def update_product_tab(self, product_data): + for product in product_data: + self.update_product_tab_by_id(product['id']) + + + def create_or_update_product(self, product_data, attributes, tabs, categories, medias): + self.product_manager.update_data_product(product_data=product_data, categories=categories, medias=medias) + self.update_product_attribute(attributes=attributes, product_data=product_data) + product_id = self.product_manager.find_id_by_slug(product_data['slug']) + if product_data['type'] == 'variable': + pass + # create_product_variation + self.tab_manager.create_or_update_for_product(product_id=product_id, tabs=tabs) + + + def process_file(self, filename): + # refresh media cache + medias = media_manager.get_all_as_slug_dict() + self.product_manager.medias = medias + # read provided file + reader = OdsReader(filename) + for product_line in reader.get_all_product_lines(): + # standard product data + product_data = { + 'name' : product_line['Nom'], + 'price': product_line['Prix'], + 'regular_price': product_line['Prix'], + 'stock_quantity': product_line['Stock'], + 'manage_stock':True, + 'weight':str(product_line['Poids']), + 'sku':str(product_line['Numéro de référence']), + 'description': product_line['Description'], + 'short_description': product_line['Courte Description'], + 'slug':product_line['Slug'] + } + if product_line['Type'] == "variable": + product_data['type'] = product_line['Type'] + # ... associated attributes + #attributes = [product_line['Temps de combustion'], product_line['Type de cire'], product_line['Mèche'], product_line['Fabrication'], product_line['Composition'], product_line['Ingrédients et engagements']] + attributes = { + "Temps de combustion" : product_line['Temps de combustion'], + "Type de cire" : product_line['Type de cire'], + "Mèche" : product_line['Mèche'], + "Fabrication" : product_line['Fabrication'], + "Composition" : product_line['Composition'], + "Ingrédients et engagements" : product_line['Ingrédients et engagements'], + "Parfums" : product_line['Parfums'] + } + #attributes = self.get_list_attributes_for_product(attributes_list) + ... + # ... associated tabs + #tabs = [product_line["Conseils d'utilisation"],product_line["Précautions articles"], product_line["Allergènes_Onglet"]] + #print("coucou") + #pprint.pprint(product_line) + tabs ={ + #"Description" : product_line["Description"], + "Conseils d'utilisation" : product_line["Conseils d’utilisation"], + "Précautions articles" : product_line["Précautions articles"], + #"Allergènes" : product_line["Allergènes"] + } + # ... associated categories + categories = self.get_list_category_for_product(product_line['Catégories']) + #print(f"product_line['Catégories'] = {product_line['Catégories']}") + #print(f"catgories = {categories}") + + # ... associated categories + medias = self.get_list_media_id_for_product(product_line['Media Slugs']) + #print(f"medias = {medias}") + #print(f"product_line['Media Slugs'] = {product_line['Media Slugs']}") + # create or update product + self.create_or_update_product(product_data=product_data, attributes=attributes, tabs=tabs, categories=categories, medias=medias) + + + def put_social_data(self): + response = requests.post(url, + auth=HTTPBasicAuth("consumer_key", "consumer_secret"), + json={ + "acf": { + "instagram_url": "https://instagram.com/ton_compte" + } + } + ) + + def delete_all_informations(self): + self.media_manager.delete_all_images() + self.attribute_manager.delete_all() + self.product_manager.delete_all_product() + self.category_manager.delete_all_category() + + def delete_information_by_slug(self): + product_manager.delete_product_by_slug("chope-adoucissant") + #category_manager.delete_all_category() + +#ALL_TABS = ["Allergènes", "Conseils d’utilisation", "Description", "Précautions articles"] +#ALL_ATTRIBUTES = ["Temps de combustion", "Type de cire", "Mèche", "Fabrication", "Composition", "Ingrédients et engagement"] + +media_manager = MediaManager(ath=ath) +#media_manager.upload_media() +#media_manager.delete_all_images() +#media_manager.assign_image_logo() +category_manager = CategoryManager(wcapi=wcapi,ath=ath) +#category_manager.delete_all_category() +product_manager = ProductManager(wcapi=wcapi,ath=ath) +#product_manager.delete_all_product() +#medias=media_manager.get_all_as_slug_dict() +#media_manager.delete_media_by_slug('pyramide-olfactive-frangipanier') +#product_manager.delete_product_by_slug("citron-meringue") +#product_manager.update_data_product() +tab_manager = TabManager(wcapi=wcapi) +attribute_manager = AttributeManager(wcapi=wcapi) +#attribute_manager.create(ALL_ATTRIBUTES) +#attribute_manager.create() +#attribute_manager.configure_term() +#attribute_manager.delete_all_term() +#product_id = product_manager.find_id_by_slug("citron-meringue")""" +woocommerce_manager = WooCommerceManager(wcapi=wcapi, media_manager=media_manager,category_manager=category_manager,product_manager=product_manager, tab_manager=tab_manager, attribute_manager=attribute_manager) +##woocommerce_manager.delete_all_informations() # +woocommerce_manager.create_all_informations() +##woocommerce_manager.process_file(FILENAME_ODS) +#category_manager.update_data_categories() +#woocommerce_manager.delete_all_informations() +#woocommerce_manager.delete_information_by_slug() +#woocommerce_manager.create_all_informations() +#woocommerce_manager.create_all_categories_and_products() +#woocommerce_manager.update_product_tab() +#woocommerce_manager.tab_manager.delete_by_product_id(1890) +#woocommerce_manager.tab_manager.delete_all() +#woocommerce_manager.update_product() +#woocommerce_manager.attribute_manager.delete_all_for_product() +#woocommerce_manager.update_product_attribute_by_slug('citron-meringue') +#woocommerce_manager.attribute_manager.delete_all_for_product() + +"""tabs_in_product = [] +for tab in ALL_TABS: + tab_in_product = woocommerce_manager.tab_exists(1890, tab) + tabs_in_product.append(tab_in_product)""" + +""" +utilisation +module argparse +# on va appeler ça importation d'un fichier ods, d'où l'action import-ods +# on va appeler cette commande, "la commande de base" +wcctl --wc-url=https://lescreationsdemissbleue.local --wc-key= --wc-secret= import-ods --ods-path=fichier.ods + +# traitement de l'intégralité d'un fichier ods +... --all + +# traitement des medias seulement, on peut en option spécifier une plage de média à importer +... --medias [--media-range=1:40] + +plu tard ... +# traitement des catégories seulement, on peut en option spécifier une expression régulière qui va s'appliquer au nom de la catégorie +... --categories [--categories-regex=] +ex: traiter uniquement les catégories dont le nom contient le terme "bougie" +... --categories [--categories-regex=.*bougie.*] + +# traitement des articles seulement, on peut en option spécifier une expression régulière qui va s'appliquer au nom de l'article' +# ... --products [--products-regex=] +ex: traiter uniquement les articles dont le nom contient le terme "bougie" +... --categories [--products-regex=.*bougie.*] + + +""" \ No newline at end of file diff --git a/api_woocommerce_old.py b/api_woocommerce_old.py new file mode 100644 index 0000000..6525ddc --- /dev/null +++ b/api_woocommerce_old.py @@ -0,0 +1,376 @@ +from woocommerce import API +import pandas as pd +import ezodf +import requests +import pprint +import base64 +import time +import json + +wcapi = API( + url="https://lescreationsdemissbleue.local", + consumer_key="ck_604e9b7b5d290cce72346efade6b31cb9a1ff28e", + consumer_secret="cs_563974c7e59532c1ae1d0f8bbf61f0500d6bc768", + wp_api=True, + version="wc/v3", + verify_ssl=False # Désactive la vérification SSL pour le développement +) + +# ✅ Identifiants WordPress (et non WooCommerce) +wordpress_username = "admin_lcdm" # Remplace par ton username WordPress +wordpress_application_password = "yTW8 Mc6J FUCN tPSq bnuJ 0Sdw" #"#8io_mb!55@Bis" # Généré dans WordPress > Utilisateurs + +# ✅ Générer l'authentification Basic en base64 +auth_str = f"{wordpress_username}:{wordpress_application_password}" +auth_bytes = auth_str.encode("utf-8") +auth_base64 = base64.b64encode(auth_bytes).decode("utf-8") + +images_to_upload = [ + {'categories': [ + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-sapin-face.jpg", "chope-sapin-face.jpg", "Chope sapin", "Chope sapin de face", "Gamme prestige"), + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-adoucissant-face.jpg", "chope-adoucissant-face.jpg", "Chope adoucissant", "Chope adoucissant de face", "Chopes"), + ] + }, + {'images':[ + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-citron-meringue-face.jpg", "chope-citron-meringue-face.jpg", "Chope citron meringuée (1)", "Chope citron meringuée de face", "Chopes"), + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-citron-meringue-haut.jpg", "chope-citron-meringue-haut.jpg", "Chope citron meringuée (2)", "Chope citron meringuée de haut", "Chopes"), + ("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\photos\\Photos_Claudine\\Photos_bougies_Claudine\\Bougies\\Chope\\chope-citron-meringue-dos.jpg", "chope-citron-meringue-dos.jpg", "Chope citron meringuée (3)", "Chope citron meringuée de dos", "Chopes") + ] + } +] +"""updata_data = { + "title" : "Pyramide olfactive test", + "alt_text": "Pyramide olfactive test" +} + +response = requests.post( + media_api_url, + headers=headers, + json=updata_data, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + )""" + + +def update_data(title, alt, image_id): + updata_data = { + "title" : title, + "alt_text": alt + } + headers = { + "Authorization": f"Basic {auth_base64}", + "Content-Type": "application/json" + } + + response = requests.post( + f"{media_api_url}/{image_id}", + headers=headers, + json=updata_data, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + ) + # ✅ Vérifier la réponse + if response.status_code == 200: + print(f"✅ Métadonnées mises à jour pour l’image {image_id} : {title} | ALT : {alt}") + return response.json() # Retourne les nouvelles données de l'image + else: + print(f"❌ Erreur mise à jour image : {response.status_code} {response.text}") + return None + +media_api_url = f"https://lescreationsdemissbleue.local/wp-json/wp/v2/media" + +def upload_image(image_path, image_name, title, alt, category_name): + with open(image_path, "rb") as image_file: + response = requests.post( + media_api_url, + headers={ + "Authorization": f"Basic {auth_base64}", + "Content-Disposition": f"attachment; filename={image_name}" + }, + files={"file": image_file}, + verify=False + ) + + if response.status_code == 201: + media_data = response.json() + update_data(title, alt, media_data["id"]) + return {'category_name':category_name, 'id':media_data["id"], 'image_name':image_name} # Retourne l'ID de l'image + else: + print(f"❌ Erreur image : {response.status_code} {response.text}") + return None + +categories_api_url = "https://lescreationsdemissbleue.local/wp-json/wp/v2/product_cat" +category_parent_id = 0 +image_id= None +categories_to_create = [ + ("Gamme prestige", "Catégorie principale pour organiser la gamme prestige", None), + ("Chopes", "Catégorie enfant de la gamme prestige", category_parent_id), +] + +def create_category(name, description, parent_id=None): + """Crée une catégorie WooCommerce (principale ou sous-catégorie)""" + category_data = { + "name": name, + "description": description, + "parent": parent_id if parent_id else 0, + #'images':image_id + } + response = wcapi.post("products/categories/", category_data) + + print(f"response.status_code = {response.status_code}") + print(f"Réponse API = {response.text}") + if response.status_code == 201: + category = response.json() + #pprint.pprint(category) + #return category["id"] + return category + else: + return None + +uploaded_images_cat = [] +for image_path, image_name, title, alt, category_name in images_to_upload[0]['categories']: + category_dict = upload_image(image_path, image_name, title, alt, category_name) + uploaded_images_cat.append(category_dict) + +for image_path, image_name, title, alt, category_name in images_to_upload[1]['images']: + upload_image(image_path, image_name, title, alt, category_name) + + +def get_id_img_for_category(category): + headers = { + "Authorization": f"Basic {auth_base64}", + "Content-Type": "application/json" + } + + response = requests.get( + media_api_url, + headers=headers, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + ) + response_images = response.json() + image_id = {} + for img in response_images: + for cat_img in uploaded_images_cat: + print(f"cat_img['id'] = {cat_img['id']}") + if category['name'] == cat_img['category_name']: + image_id = {'id':cat_img['id']} + break + print(f"image_id = {image_id}") + return image_id + + +def update_data_img_id_for_category(img_id, cat_id): + update_category_data = { + "image" : img_id, + } + print(f"cat_id = {cat_id}") + print(f"img_id = {img_id}") + response = wcapi.put(f"products/categories/{cat_id}", update_category_data) +"""def get_id_img_for_category(category): + category_list_by_doc = [cat.strip().replace('"', '') for cat in product['Categorie'].split("/")] + #list_images_by_doc = [img.strip().replace('"', '') for img in product['Photo'].split(",")] + #print(f'category_list_by_doc = {category_list_by_doc}') + + headers = { + "Authorization": f"Basic {auth_base64}", + "Content-Type": "application/json" + } + + response = requests.get( + media_api_url, + headers=headers, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + ) + + response_images = response.json() + #print(f"response_images = {type(response_images)}") + for img in response_images: + #print(f"type_img = {type(img)}") + for key, value in img.items(): + if key == 'source_url': + #print(f"key= {key}, value = {value}") + for image in list_images_by_doc: + if category['image_name'] in value: + img_id = category['id'] + #pprint.pprint(f'list_image_for_product = {list_image_for_product}') + return img_id""" + +for category in categories_to_create: + name, description, parent_id = category + if parent_id != None: + parent_id = cat['id'] + #img_id = get_id_img_for_category(category) + cat = create_category(name, description, parent_id) + img_id = get_id_img_for_category(cat) + update_data_img_id_for_category(img_id,cat["id"]) + +def get_list_id_img_for_product(product): + list_images_by_doc = [img.strip().replace('"', '') for img in product['Photo'].split(",")] + + headers = { + "Authorization": f"Basic {auth_base64}", + "Content-Type": "application/json" + } + + response = requests.get( + media_api_url, + headers=headers, + verify=False # ⚠️ Désactiver la vérification SSL si problème de certificat + ) + + list_image_for_product = [] + response_images = response.json() + for img in response_images: + for key, value in img.items(): + if key == 'source_url': + for image in list_images_by_doc: + if image in value: + img_id_for_product = {'id':img['id'], 'value':value} + list_image_for_product.append(img_id_for_product) + break + return list_image_for_product[::-1] + + +def get_list_category_for_product(product): + response = wcapi.get("products/categories") + category_list_by_doc = [cat.strip().replace('"', '') for cat in product['Categorie'].split("/")] + list_category_for_product = [] + for category in response.json(): + for cat in category_list_by_doc: + if category['name'] == cat: + id_category = {'id':category['id']} + list_category_for_product.append(id_category) + return list_category_for_product + +def update_data_list_cat_product(list_category_id, list_img_id, product_id): + product_data = { + 'categories':list_category_id, + 'images':list_img_id, + } + wcapi.put(f"products/{product_id}", product_data) + response_product = wcapi.get(f"products/{product_id}") + +def create_product(product): + + product_data = { + 'name' : product['Nom'], + 'price': product['Prix'], + 'stock_quantity': product['Stock'], + 'description': product['Description'], + #'images':list_id_image, + 'short_description':product['Courte_description'], + #'categories':list_id_category + } + response = wcapi.post("products/", product_data) + + print(f"response.status_code = {response.status_code}") + print("Réponse API :", response.text) + if response.status_code == 201: + product = response.json() + return product["id"] + else: + return None + +ezodf.config.set_table_expand_strategy('all') +doc = ezodf.opendoc("C:\\Users\\beren\\OneDrive\\Documents\\nextcloud\\beren\\site_missbleue\\infos_site.ods") + +# Sélectionner la première feuille +sheet = doc.sheets[0] + +# Convertir la feuille en DataFrame +data = [] +for row in sheet.rows(): + data.append([cell.value for cell in row]) + +# Convertir en DataFrame Pandas +df = pd.DataFrame(data) +df.columns = df.iloc[0] +df = df[1:].reset_index(drop=True) +df = df.dropna(how='all') +json_data = df.to_dict(orient="records") +#get_data = json.dumps(json_data, indent=4, ensure_ascii=False) +for product in json_data: + #list_img_id = get_list_id_img_for_product(product) + product_id = create_product(product) + list_category_id = get_list_category_for_product(product) + list_img_id = get_list_id_img_for_product(product) + update_data_list_cat_product(list_category_id, list_img_id, product_id) +""" +categories_to_create = [ + ("Gamme prestige", "Catégorie principale pour organiser la gamme prestige", image_id, None), + ("Chope", "Catégorie enfant de la gamme prestige", image_id, category_parent_id), +] + +uploaded_images_cat = [] +for image_path, image_name, title, alt, category_name in images_to_upload[0]['categories']: + image_name_id = upload_image(image_path, image_name, title, alt, category_name) + if image_name_id: + uploaded_images_cat.append(image_name_id) + +uploaded_images = [] +for image_path, image_name, title, alt, category_name in images_to_upload[1]['images']: + + print(f'image_name = {image_name}') + image_name_id = upload_image(image_path, image_name, title, alt, category_name) + if image_name_id: + uploaded_images.append(image_name_id) + print(f"uploaded_images = {uploaded_images}") + +def create_category(name, description, image_id=None, parent_id=None): + category_data = { + "name": name, + "description": description, + "parent": parent_id if parent_id else 0, + } + if image_id: + category_data['image'] = {'id':image_id} + + + #response = requests.post(categories_api_url, headers=headers, json=category_data, verify=False) + response = wcapi.post("products/categories/", category_data) + + print(f"response.status_code = {response.status_code}") + print(f"Réponse API = {response.text}") + if response.status_code == 201: + category = response.json() + #pprint.pprint(category) + #return category["id"] + return {'category_name':category_name, 'id':category["id"]} + else: + return None + +categories_list = [] +for category in categories_to_create: + name, description, image_id, parent_id = category + for image in uploaded_images_cat: + if image['category_name'] == name: + image_id = image['id'] + if parent_id != None: + parent_id = cat['id'] + cat = create_category(name, description, image_id, parent_id) + print(f"category = {category}") + print(type(category)) + categories_list.append(cat) + """ +"""list_id_image = [] + pprint.pprint(uploaded_images) + for image in uploaded_images: + if image['image_name'] in image_list: + image = {'id':image['id']} + list_id_image.append(image) + + list_id_category = [] + pprint.pprint(categories_list) + pprint.pprint(category_list) + print('______') + for category in categories_list: + print(f'categoryyyy = {category}') + if category['category_name'] in category_list: + print(f"category['id'] = {category['id']}") + cat = {'id':category['id']} + list_id_category.append(cat) + print(f"list_id_category = {list_id_category}") + + list_test = [] + test = {'id':3} + list_test.append(test) + print(f"list_test = {list_test}") """ + \ No newline at end of file diff --git a/woocommerce.log b/woocommerce.log new file mode 100644 index 0000000..25c73f3 --- /dev/null +++ b/woocommerce.log @@ -0,0 +1,212487 @@ +2025-03-04 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:03:41 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:41 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:42 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:43 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:23:03 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:04 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:05 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:05 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:26:37 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:38 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:39 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:40 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:29:21 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:21 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:23 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:23 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:31:38 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:39 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:40 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:41 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 16:38:10 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:11 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:11 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:13 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:42:58 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:42:59 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:43:00 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:43:01 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:43:02 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:02 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:03 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:04 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:05 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:05 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:06 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:07 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:43:08 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:09 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:10 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:11 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:43:11 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:12 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:13 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:14 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:43:15 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:16 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:17 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:17 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:50:12 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:13 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:14 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:14 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:50:15 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:16 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:17 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:18 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:18 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:19 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:20 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:20 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:50:21 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:22 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 16:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:23 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 16:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:24 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:50:25 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 16:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:26 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:27 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:28 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:50:29 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:29 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:30 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:31 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 16:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 16:59:41 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 16:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:42 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:43 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 16:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:44 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 16:59:44 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:45 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:46 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 16:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:47 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 16:59:48 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:48 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:49 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 16:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:50 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 16:59:51 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:52 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:53 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 16:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:53 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 16:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 16:59:54 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:55 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 16:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:56 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:57 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 16:59:58 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:59:59 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:00:00 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:00:00 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:01:58 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:03:31 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:32 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:33 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:34 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:03:35 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:36 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:37 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:38 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:39 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:40 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:41 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:41 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:03:42 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:43 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:44 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:45 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:03:46 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:47 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:48 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:49 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:03:50 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:51 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:52 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:53 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:05:01 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:01 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:02 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:03 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:05:04 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:05 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:06 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:07 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:08 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:08 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:09 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:10 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:05:11 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:12 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:13 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:14 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:05:15 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:16 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:17 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:18 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:05:19 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:20 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:20 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:21 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:10:12 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:10:13 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:10:13 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:10:14 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:10:14 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:14 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:15 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:15 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:15 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:10:15 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:10:16 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:10:16 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:10:16 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:10:17 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:10:17 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:10:18 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:10:18 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:10:18 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:10:19 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:10:19 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:10:19 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:10:20 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:10:20 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:10:20 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:11:46 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:11:46 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:11:47 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:11:47 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:11:47 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:48 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:48 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:49 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:49 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:11:49 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:11:50 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:11:50 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:11:50 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:11:50 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:11:51 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:11:51 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:11:52 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:11:52 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:11:52 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:11:53 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:11:53 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:11:53 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:11:54 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:11:54 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:12:45 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:12:45 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:12:46 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:12:46 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:12:46 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:47 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:47 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:47 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:48 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:12:48 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:12:48 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:12:49 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:12:49 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:12:49 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:12:50 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:12:50 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:12:50 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:12:51 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:12:51 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:12:51 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:12:51 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:12:52 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:12:52 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:12:52 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 17:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 17:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 17:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 17:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:30:18 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:19 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:20 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:21 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:30:22 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:23 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:24 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:24 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:25 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:26 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:27 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:28 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:30:28 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:30 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:30 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:32 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:30:33 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:34 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:34 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:35 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:30:36 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:37 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:37 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:38 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:31:10 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:31:11 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:31:11 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:31:11 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:31:12 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:12 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:12 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:13 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:13 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:31:13 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:31:14 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:31:14 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:31:14 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:31:15 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:31:15 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:31:15 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:31:16 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:31:16 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:31:16 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:31:17 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:31:17 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:31:17 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:31:18 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:31:18 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 17:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-04 17:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:38:15 - INFO - create_for_product(product_id=1890, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-04 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:15 - INFO - create_for_product(product_id=1890, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-04 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:16 - INFO - create_for_product(product_id=1890, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-04 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:17 - INFO - create_for_product(product_id=1890, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-04 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:17 - INFO - create_for_product(product_id=519, title=Allergnes, content=H302 Nocif en cas , nickname=, position=5, tab_type=local) called +2025-03-04 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:38:18 - INFO - create_for_product(product_id=519, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-04 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:38:18 - INFO - create_for_product(product_id=519, title=Description, content=La Chope au parfum , nickname=, position=7, tab_type=local) called +2025-03-04 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:38:19 - INFO - create_for_product(product_id=519, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-04 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-04 17:38:19 - INFO - create_for_product(product_id=517, title=Allergnes, content=H302 Nocif en cas , nickname=, position=9, tab_type=local) called +2025-03-04 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:38:19 - INFO - create_for_product(product_id=517, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-04 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:38:19 - INFO - create_for_product(product_id=517, title=Description, content=La Chope au parfum , nickname=, position=11, tab_type=local) called +2025-03-04 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:38:20 - INFO - create_for_product(product_id=517, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-04 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/517 HTTP/1.1" 200 None +2025-03-04 17:38:20 - INFO - create_for_product(product_id=504, title=Allergnes, content=H302 Nocif en cas , nickname=, position=13, tab_type=local) called +2025-03-04 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:38:20 - INFO - create_for_product(product_id=504, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-04 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:38:21 - INFO - create_for_product(product_id=504, title=Description, content=La Chope au parfum , nickname=, position=15, tab_type=local) called +2025-03-04 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:38:21 - INFO - create_for_product(product_id=504, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-04 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-04 17:38:21 - INFO - create_for_product(product_id=207, title=Allergnes, content=H302 Nocif en cas , nickname=, position=17, tab_type=local) called +2025-03-04 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:38:22 - INFO - create_for_product(product_id=207, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-04 17:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:38:22 - INFO - create_for_product(product_id=207, title=Description, content=La Chope au parfum , nickname=, position=19, tab_type=local) called +2025-03-04 17:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:38:23 - INFO - create_for_product(product_id=207, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-04 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-04 17:38:23 - INFO - create_for_product(product_id=200, title=Allergnes, content=H302 Nocif en cas , nickname=, position=21, tab_type=local) called +2025-03-04 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:38:23 - INFO - create_for_product(product_id=200, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-04 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:38:24 - INFO - create_for_product(product_id=200, title=Description, content=La Chope au parfum , nickname=, position=23, tab_type=local) called +2025-03-04 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:38:24 - INFO - create_for_product(product_id=200, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-04 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/200 HTTP/1.1" 200 None +2025-03-04 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-04 17:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-04 17:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-04 17:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-04 17:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-04 17:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-04 17:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-04 17:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-04 17:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-04 17:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-04 17:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-04 17:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-04 17:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-04 17:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-04 17:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-04 17:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 09:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 09:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 09:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 09:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 09:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 09:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 09:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 09:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 09:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 09:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 09:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 09:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes?force=True HTTP/1.1" 404 None +2025-03-05 09:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes?force=True HTTP/1.1" 404 None +2025-03-05 09:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes?force=True HTTP/1.1" 404 None +2025-03-05 09:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes?force=True HTTP/1.1" 404 None +2025-03-05 09:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes?force=True HTTP/1.1" 404 None +2025-03-05 09:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes?force=True HTTP/1.1" 404 None +2025-03-05 09:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 09:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 09:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/13?force=True HTTP/1.1" 200 None +2025-03-05 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/12?force=True HTTP/1.1" 200 None +2025-03-05 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/14?force=True HTTP/1.1" 200 None +2025-03-05 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/11?force=True HTTP/1.1" 200 None +2025-03-05 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/1?force=True HTTP/1.1" 200 None +2025-03-05 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/9?force=True HTTP/1.1" 200 None +2025-03-05 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/10?force=True HTTP/1.1" 200 None +2025-03-05 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-05 10:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-05 10:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-05 10:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-05 10:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-05 10:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-05 10:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-05 10:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 10:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 10:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 10:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 10:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 10:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 10:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 201 None +2025-03-05 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 201 None +2025-03-05 10:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 201 None +2025-03-05 10:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 201 None +2025-03-05 10:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/18/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/16/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/15/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/17/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/19/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/18/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/16/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/15/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/17/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/19/terms?force=True HTTP/1.1" 404 None +2025-03-05 10:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/18/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/18/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/18/terms/280?force=True HTTP/1.1" 200 None +2025-03-05 10:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/16/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/16/terms/281?force=True HTTP/1.1" 200 None +2025-03-05 10:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/20/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20/terms/282?force=True HTTP/1.1" 200 None +2025-03-05 10:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/15/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/15/terms/283?force=True HTTP/1.1" 200 None +2025-03-05 10:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/17/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/17/terms/284?force=True HTTP/1.1" 200 None +2025-03-05 10:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/19/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/19/terms/285?force=True HTTP/1.1" 200 None +2025-03-05 10:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 10:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 10:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 10:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 10:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 10:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 10:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 10:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 10:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 10:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 10:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 10:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 10:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 10:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 10:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 10:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 201 None +2025-03-05 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 201 None +2025-03-05 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 201 None +2025-03-05 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 201 None +2025-03-05 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 400 None +2025-03-05 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 400 None +2025-03-05 11:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 400 None +2025-03-05 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 400 None +2025-03-05 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 400 None +2025-03-05 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/504 HTTP/1.1" 200 None +2025-03-05 11:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/207 HTTP/1.1" 200 None +2025-03-05 11:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/18/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/18/terms/287?force=True HTTP/1.1" 200 None +2025-03-05 11:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/18/terms/286?force=True HTTP/1.1" 200 None +2025-03-05 11:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/16/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/16/terms/288?force=True HTTP/1.1" 200 None +2025-03-05 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/20/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20/terms/291?force=True HTTP/1.1" 200 None +2025-03-05 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20/terms/289?force=True HTTP/1.1" 200 None +2025-03-05 11:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20/terms/290?force=True HTTP/1.1" 200 None +2025-03-05 11:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/15/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/15/terms/292?force=True HTTP/1.1" 200 None +2025-03-05 11:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/17/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/17/terms/293?force=True HTTP/1.1" 200 None +2025-03-05 11:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes/19/terms?per_page=100 HTTP/1.1" 200 None +2025-03-05 11:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/19/terms/294?force=True HTTP/1.1" 200 None +2025-03-05 11:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 11:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 11:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 11:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 11:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 11:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 11:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 11:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 11:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/18/terms HTTP/1.1" 201 None +2025-03-05 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/16/terms HTTP/1.1" 201 None +2025-03-05 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 201 None +2025-03-05 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/20/terms HTTP/1.1" 400 None +2025-03-05 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/15/terms HTTP/1.1" 201 None +2025-03-05 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/17/terms HTTP/1.1" 201 None +2025-03-05 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/19/terms HTTP/1.1" 201 None +2025-03-05 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 400 None +2025-03-05 12:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 12:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 12:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 12:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 12:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 12:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 12:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/519 HTTP/1.1" 200 None +2025-03-05 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 12:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 15:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 15:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 15:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 15:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 15:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 15:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 15:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 15:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 15:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 15:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 15:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media HTTP/1.1" 200 None +2025-03-05 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1893 HTTP/1.1" 200 None +2025-03-05 16:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1894 HTTP/1.1" 200 None +2025-03-05 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1895 HTTP/1.1" 200 None +2025-03-05 16:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1896 HTTP/1.1" 200 None +2025-03-05 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1897 HTTP/1.1" 200 None +2025-03-05 16:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1898 HTTP/1.1" 200 None +2025-03-05 16:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1899 HTTP/1.1" 200 None +2025-03-05 16:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1900 HTTP/1.1" 200 None +2025-03-05 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1901 HTTP/1.1" 200 None +2025-03-05 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1902 HTTP/1.1" 200 None +2025-03-05 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1903 HTTP/1.1" 200 None +2025-03-05 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1904 HTTP/1.1" 200 None +2025-03-05 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1905 HTTP/1.1" 200 None +2025-03-05 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1906 HTTP/1.1" 200 None +2025-03-05 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1907 HTTP/1.1" 200 None +2025-03-05 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1908 HTTP/1.1" 200 None +2025-03-05 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1909 HTTP/1.1" 200 None +2025-03-05 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1910 HTTP/1.1" 200 None +2025-03-05 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1911 HTTP/1.1" 200 None +2025-03-05 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1912 HTTP/1.1" 200 None +2025-03-05 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1913 HTTP/1.1" 200 None +2025-03-05 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1914 HTTP/1.1" 200 None +2025-03-05 16:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1915 HTTP/1.1" 200 None +2025-03-05 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1916 HTTP/1.1" 200 None +2025-03-05 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1917 HTTP/1.1" 200 None +2025-03-05 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1918 HTTP/1.1" 200 None +2025-03-05 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1919 HTTP/1.1" 200 None +2025-03-05 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1920 HTTP/1.1" 200 None +2025-03-05 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1921 HTTP/1.1" 200 None +2025-03-05 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1922 HTTP/1.1" 200 None +2025-03-05 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1923 HTTP/1.1" 200 None +2025-03-05 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1924 HTTP/1.1" 200 None +2025-03-05 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1925 HTTP/1.1" 200 None +2025-03-05 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1926 HTTP/1.1" 200 None +2025-03-05 16:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1927 HTTP/1.1" 200 None +2025-03-05 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1928 HTTP/1.1" 200 None +2025-03-05 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1929 HTTP/1.1" 200 None +2025-03-05 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1930 HTTP/1.1" 200 None +2025-03-05 16:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1931 HTTP/1.1" 200 None +2025-03-05 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1932 HTTP/1.1" 200 None +2025-03-05 16:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1933 HTTP/1.1" 200 None +2025-03-05 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1934 HTTP/1.1" 200 None +2025-03-05 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1935 HTTP/1.1" 200 None +2025-03-05 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1936 HTTP/1.1" 200 None +2025-03-05 16:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1937 HTTP/1.1" 200 None +2025-03-05 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1938 HTTP/1.1" 200 None +2025-03-05 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1939 HTTP/1.1" 200 None +2025-03-05 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1941 HTTP/1.1" 200 None +2025-03-05 16:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1942 HTTP/1.1" 200 None +2025-03-05 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1943 HTTP/1.1" 200 None +2025-03-05 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1944 HTTP/1.1" 200 None +2025-03-05 16:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1945 HTTP/1.1" 200 None +2025-03-05 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1946 HTTP/1.1" 200 None +2025-03-05 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1948 HTTP/1.1" 200 None +2025-03-05 16:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1949 HTTP/1.1" 200 None +2025-03-05 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1950 HTTP/1.1" 200 None +2025-03-05 16:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1952 HTTP/1.1" 200 None +2025-03-05 16:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1953 HTTP/1.1" 200 None +2025-03-05 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1954 HTTP/1.1" 200 None +2025-03-05 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1955 HTTP/1.1" 200 None +2025-03-05 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 200 None +2025-03-05 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=6 HTTP/1.1" 400 None +2025-03-05 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 200 None +2025-03-05 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=5 HTTP/1.1" 400 None +2025-03-05 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1957 HTTP/1.1" 200 None +2025-03-05 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1958 HTTP/1.1" 200 None +2025-03-05 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1959 HTTP/1.1" 200 None +2025-03-05 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1960 HTTP/1.1" 200 None +2025-03-05 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1961 HTTP/1.1" 200 None +2025-03-05 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1962 HTTP/1.1" 200 None +2025-03-05 16:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1963 HTTP/1.1" 200 None +2025-03-05 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1964 HTTP/1.1" 200 None +2025-03-05 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1965 HTTP/1.1" 200 None +2025-03-05 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1966 HTTP/1.1" 200 None +2025-03-05 16:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1967 HTTP/1.1" 200 None +2025-03-05 16:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1968 HTTP/1.1" 200 None +2025-03-05 16:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1969 HTTP/1.1" 200 None +2025-03-05 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1970 HTTP/1.1" 200 None +2025-03-05 16:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1971 HTTP/1.1" 200 None +2025-03-05 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1972 HTTP/1.1" 200 None +2025-03-05 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1973 HTTP/1.1" 200 None +2025-03-05 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1974 HTTP/1.1" 200 None +2025-03-05 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1975 HTTP/1.1" 200 None +2025-03-05 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1976 HTTP/1.1" 200 None +2025-03-05 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1977 HTTP/1.1" 200 None +2025-03-05 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1978 HTTP/1.1" 200 None +2025-03-05 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1979 HTTP/1.1" 200 None +2025-03-05 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1980 HTTP/1.1" 200 None +2025-03-05 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1981 HTTP/1.1" 200 None +2025-03-05 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1982 HTTP/1.1" 200 None +2025-03-05 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1983 HTTP/1.1" 200 None +2025-03-05 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1984 HTTP/1.1" 200 None +2025-03-05 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1985 HTTP/1.1" 200 None +2025-03-05 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1986 HTTP/1.1" 200 None +2025-03-05 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1987 HTTP/1.1" 200 None +2025-03-05 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1988 HTTP/1.1" 200 None +2025-03-05 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1989 HTTP/1.1" 200 None +2025-03-05 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1990 HTTP/1.1" 200 None +2025-03-05 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1991 HTTP/1.1" 200 None +2025-03-05 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1992 HTTP/1.1" 200 None +2025-03-05 16:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1993 HTTP/1.1" 200 None +2025-03-05 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1994 HTTP/1.1" 200 None +2025-03-05 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1995 HTTP/1.1" 200 None +2025-03-05 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1996 HTTP/1.1" 200 None +2025-03-05 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1997 HTTP/1.1" 200 None +2025-03-05 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/1999 HTTP/1.1" 200 None +2025-03-05 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2000 HTTP/1.1" 200 None +2025-03-05 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2001 HTTP/1.1" 200 None +2025-03-05 16:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2003 HTTP/1.1" 200 None +2025-03-05 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2004 HTTP/1.1" 200 None +2025-03-05 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2005 HTTP/1.1" 200 None +2025-03-05 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2006 HTTP/1.1" 200 None +2025-03-05 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2007 HTTP/1.1" 200 None +2025-03-05 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2008 HTTP/1.1" 200 None +2025-03-05 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2009 HTTP/1.1" 200 None +2025-03-05 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2010 HTTP/1.1" 200 None +2025-03-05 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2011 HTTP/1.1" 200 None +2025-03-05 16:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2012 HTTP/1.1" 200 None +2025-03-05 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2013 HTTP/1.1" 200 None +2025-03-05 16:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2014 HTTP/1.1" 200 None +2025-03-05 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2016 HTTP/1.1" 200 None +2025-03-05 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2017 HTTP/1.1" 200 None +2025-03-05 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2018 HTTP/1.1" 200 None +2025-03-05 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2019 HTTP/1.1" 200 None +2025-03-05 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2020 HTTP/1.1" 200 None +2025-03-05 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2021 HTTP/1.1" 200 None +2025-03-05 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2022 HTTP/1.1" 200 None +2025-03-05 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2023 HTTP/1.1" 200 None +2025-03-05 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2024 HTTP/1.1" 200 None +2025-03-05 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2025 HTTP/1.1" 200 None +2025-03-05 16:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2026 HTTP/1.1" 200 None +2025-03-05 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2027 HTTP/1.1" 200 None +2025-03-05 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2028 HTTP/1.1" 200 None +2025-03-05 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2030 HTTP/1.1" 200 None +2025-03-05 16:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2031 HTTP/1.1" 200 None +2025-03-05 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2032 HTTP/1.1" 200 None +2025-03-05 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2033 HTTP/1.1" 200 None +2025-03-05 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2034 HTTP/1.1" 200 None +2025-03-05 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2035 HTTP/1.1" 200 None +2025-03-05 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2036 HTTP/1.1" 200 None +2025-03-05 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2037 HTTP/1.1" 200 None +2025-03-05 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2038 HTTP/1.1" 200 None +2025-03-05 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2039 HTTP/1.1" 200 None +2025-03-05 16:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2040 HTTP/1.1" 200 None +2025-03-05 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2041 HTTP/1.1" 200 None +2025-03-05 16:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2042 HTTP/1.1" 200 None +2025-03-05 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2043 HTTP/1.1" 200 None +2025-03-05 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2044 HTTP/1.1" 200 None +2025-03-05 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2045 HTTP/1.1" 200 None +2025-03-05 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2046 HTTP/1.1" 200 None +2025-03-05 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2047 HTTP/1.1" 200 None +2025-03-05 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2048 HTTP/1.1" 200 None +2025-03-05 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2049 HTTP/1.1" 200 None +2025-03-05 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2050 HTTP/1.1" 200 None +2025-03-05 16:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2051 HTTP/1.1" 200 None +2025-03-05 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2052 HTTP/1.1" 200 None +2025-03-05 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2053 HTTP/1.1" 200 None +2025-03-05 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2054 HTTP/1.1" 200 None +2025-03-05 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2055 HTTP/1.1" 200 None +2025-03-05 16:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2056 HTTP/1.1" 200 None +2025-03-05 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2057 HTTP/1.1" 200 None +2025-03-05 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2058 HTTP/1.1" 200 None +2025-03-05 16:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2059 HTTP/1.1" 200 None +2025-03-05 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2060 HTTP/1.1" 200 None +2025-03-05 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2061 HTTP/1.1" 200 None +2025-03-05 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2062 HTTP/1.1" 200 None +2025-03-05 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2063 HTTP/1.1" 200 None +2025-03-05 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2064 HTTP/1.1" 200 None +2025-03-05 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2065 HTTP/1.1" 200 None +2025-03-05 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2066 HTTP/1.1" 200 None +2025-03-05 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2067 HTTP/1.1" 200 None +2025-03-05 16:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2068 HTTP/1.1" 200 None +2025-03-05 16:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2069 HTTP/1.1" 200 None +2025-03-05 16:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2070 HTTP/1.1" 200 None +2025-03-05 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2071 HTTP/1.1" 200 None +2025-03-05 16:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2072 HTTP/1.1" 200 None +2025-03-05 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2073 HTTP/1.1" 200 None +2025-03-05 16:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2074 HTTP/1.1" 200 None +2025-03-05 16:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2075 HTTP/1.1" 200 None +2025-03-05 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2076 HTTP/1.1" 200 None +2025-03-05 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2077 HTTP/1.1" 200 None +2025-03-05 16:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2078 HTTP/1.1" 200 None +2025-03-05 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2079 HTTP/1.1" 200 None +2025-03-05 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2080 HTTP/1.1" 200 None +2025-03-05 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2082 HTTP/1.1" 200 None +2025-03-05 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2083 HTTP/1.1" 200 None +2025-03-05 16:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2084 HTTP/1.1" 200 None +2025-03-05 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2085 HTTP/1.1" 200 None +2025-03-05 16:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2087 HTTP/1.1" 200 None +2025-03-05 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2089 HTTP/1.1" 200 None +2025-03-05 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2090 HTTP/1.1" 200 None +2025-03-05 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2091 HTTP/1.1" 200 None +2025-03-05 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2092 HTTP/1.1" 200 None +2025-03-05 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2094 HTTP/1.1" 200 None +2025-03-05 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2095 HTTP/1.1" 200 None +2025-03-05 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2096 HTTP/1.1" 200 None +2025-03-05 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2097 HTTP/1.1" 200 None +2025-03-05 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2098 HTTP/1.1" 200 None +2025-03-05 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2099 HTTP/1.1" 200 None +2025-03-05 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 200 None +2025-03-05 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 16:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 16:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/1890?force=True HTTP/1.1" 200 None +2025-03-05 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-05 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2100 HTTP/1.1" 200 None +2025-03-05 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2100?force=True HTTP/1.1" 200 None +2025-03-05 17:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-05 17:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:17:40 - INFO - create_for_product(product_id=2101, title=Allergnes, content=H302 Nocif en cas , nickname=, position=1, tab_type=local) called +2025-03-05 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:41 - INFO - create_for_product(product_id=2101, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-05 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:41 - INFO - create_for_product(product_id=2101, title=Description, content=La Chope au parfum , nickname=, position=3, tab_type=local) called +2025-03-05 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:42 - INFO - create_for_product(product_id=2101, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-05 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-05 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2101 HTTP/1.1" 200 None +2025-03-05 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-05 17:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 17:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2103 HTTP/1.1" 200 None +2025-03-05 17:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-05 17:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2104 HTTP/1.1" 200 None +2025-03-05 17:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-05 17:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-05 17:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-05 17:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-05 17:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-05 17:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2105 HTTP/1.1" 200 None +2025-03-06 09:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2106 HTTP/1.1" 200 None +2025-03-06 09:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2107 HTTP/1.1" 200 None +2025-03-06 09:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2108 HTTP/1.1" 200 None +2025-03-06 09:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2109 HTTP/1.1" 200 None +2025-03-06 09:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2110 HTTP/1.1" 200 None +2025-03-06 09:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2111 HTTP/1.1" 200 None +2025-03-06 09:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2112 HTTP/1.1" 200 None +2025-03-06 09:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2113 HTTP/1.1" 200 None +2025-03-06 09:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2114 HTTP/1.1" 200 None +2025-03-06 09:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2115 HTTP/1.1" 200 None +2025-03-06 09:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2116 HTTP/1.1" 200 None +2025-03-06 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2117 HTTP/1.1" 200 None +2025-03-06 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2118 HTTP/1.1" 200 None +2025-03-06 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2119 HTTP/1.1" 200 None +2025-03-06 09:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2120 HTTP/1.1" 200 None +2025-03-06 09:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2121 HTTP/1.1" 200 None +2025-03-06 09:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2122 HTTP/1.1" 200 None +2025-03-06 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2123 HTTP/1.1" 200 None +2025-03-06 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2124 HTTP/1.1" 200 None +2025-03-06 09:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2125 HTTP/1.1" 200 None +2025-03-06 09:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2126 HTTP/1.1" 200 None +2025-03-06 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2127 HTTP/1.1" 200 None +2025-03-06 09:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2128 HTTP/1.1" 200 None +2025-03-06 09:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2129 HTTP/1.1" 200 None +2025-03-06 09:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2130 HTTP/1.1" 200 None +2025-03-06 09:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 09:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2131 HTTP/1.1" 200 None +2025-03-06 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 09:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2140 HTTP/1.1" 200 None +2025-03-06 10:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2141 HTTP/1.1" 200 None +2025-03-06 10:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2142 HTTP/1.1" 200 None +2025-03-06 10:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2143 HTTP/1.1" 200 None +2025-03-06 10:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2144 HTTP/1.1" 200 None +2025-03-06 10:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2145 HTTP/1.1" 200 None +2025-03-06 10:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2146 HTTP/1.1" 200 None +2025-03-06 10:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2147 HTTP/1.1" 200 None +2025-03-06 10:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2148 HTTP/1.1" 200 None +2025-03-06 10:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2149 HTTP/1.1" 200 None +2025-03-06 10:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2150 HTTP/1.1" 200 None +2025-03-06 10:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2151 HTTP/1.1" 200 None +2025-03-06 10:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2152 HTTP/1.1" 200 None +2025-03-06 10:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2153 HTTP/1.1" 200 None +2025-03-06 10:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2154 HTTP/1.1" 200 None +2025-03-06 10:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2155 HTTP/1.1" 200 None +2025-03-06 10:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-06 10:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2156 HTTP/1.1" 200 None +2025-03-06 10:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-06 10:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-06 10:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2157 HTTP/1.1" 200 None +2025-03-06 10:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2158 HTTP/1.1" 200 None +2025-03-06 10:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2159 HTTP/1.1" 200 None +2025-03-06 10:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2160 HTTP/1.1" 200 None +2025-03-06 10:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2161 HTTP/1.1" 200 None +2025-03-06 10:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2162 HTTP/1.1" 200 None +2025-03-06 10:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2163 HTTP/1.1" 200 None +2025-03-06 10:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2164 HTTP/1.1" 200 None +2025-03-06 10:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2165 HTTP/1.1" 200 None +2025-03-06 10:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2166 HTTP/1.1" 200 None +2025-03-06 10:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2167 HTTP/1.1" 200 None +2025-03-06 10:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2168 HTTP/1.1" 200 None +2025-03-06 10:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 200 None +2025-03-06 10:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=4 HTTP/1.1" 400 None +2025-03-06 10:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2168?force=true HTTP/1.1" 200 None +2025-03-06 10:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2167?force=true HTTP/1.1" 200 None +2025-03-06 10:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2166?force=true HTTP/1.1" 200 None +2025-03-06 10:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2165?force=true HTTP/1.1" 200 None +2025-03-06 10:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2164?force=true HTTP/1.1" 200 None +2025-03-06 10:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2163?force=true HTTP/1.1" 200 None +2025-03-06 10:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2162?force=true HTTP/1.1" 200 None +2025-03-06 10:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2161?force=true HTTP/1.1" 200 None +2025-03-06 10:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2160?force=true HTTP/1.1" 200 None +2025-03-06 10:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2159?force=true HTTP/1.1" 200 None +2025-03-06 10:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2158?force=true HTTP/1.1" 200 None +2025-03-06 10:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2157?force=true HTTP/1.1" 200 None +2025-03-06 10:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2156?force=true HTTP/1.1" 200 None +2025-03-06 10:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/676?force=true HTTP/1.1" 200 None +2025-03-06 10:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/675?force=true HTTP/1.1" 200 None +2025-03-06 10:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/671?force=true HTTP/1.1" 200 None +2025-03-06 10:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/670?force=true HTTP/1.1" 200 None +2025-03-06 10:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/669?force=true HTTP/1.1" 200 None +2025-03-06 10:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/668?force=true HTTP/1.1" 200 None +2025-03-06 10:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/667?force=true HTTP/1.1" 200 None +2025-03-06 10:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/666?force=true HTTP/1.1" 200 None +2025-03-06 10:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/665?force=true HTTP/1.1" 200 None +2025-03-06 10:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/664?force=true HTTP/1.1" 200 None +2025-03-06 10:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/663?force=true HTTP/1.1" 200 None +2025-03-06 10:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/662?force=true HTTP/1.1" 200 None +2025-03-06 10:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/661?force=true HTTP/1.1" 200 None +2025-03-06 10:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/660?force=true HTTP/1.1" 200 None +2025-03-06 10:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/659?force=true HTTP/1.1" 200 None +2025-03-06 10:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/658?force=true HTTP/1.1" 200 None +2025-03-06 10:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/657?force=true HTTP/1.1" 200 None +2025-03-06 10:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/656?force=true HTTP/1.1" 200 None +2025-03-06 10:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/655?force=true HTTP/1.1" 200 None +2025-03-06 10:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/654?force=true HTTP/1.1" 200 None +2025-03-06 10:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/653?force=true HTTP/1.1" 200 None +2025-03-06 10:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/652?force=true HTTP/1.1" 200 None +2025-03-06 10:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/651?force=true HTTP/1.1" 200 None +2025-03-06 10:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/650?force=true HTTP/1.1" 200 None +2025-03-06 10:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/649?force=true HTTP/1.1" 200 None +2025-03-06 10:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/648?force=true HTTP/1.1" 200 None +2025-03-06 10:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/647?force=true HTTP/1.1" 200 None +2025-03-06 10:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/646?force=true HTTP/1.1" 200 None +2025-03-06 10:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/642?force=true HTTP/1.1" 200 None +2025-03-06 10:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/641?force=true HTTP/1.1" 200 None +2025-03-06 10:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/640?force=true HTTP/1.1" 200 None +2025-03-06 10:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/639?force=true HTTP/1.1" 200 None +2025-03-06 10:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/638?force=true HTTP/1.1" 200 None +2025-03-06 10:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/637?force=true HTTP/1.1" 200 None +2025-03-06 10:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/636?force=true HTTP/1.1" 200 None +2025-03-06 10:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/635?force=true HTTP/1.1" 200 None +2025-03-06 10:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/634?force=true HTTP/1.1" 200 None +2025-03-06 10:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/633?force=true HTTP/1.1" 200 None +2025-03-06 10:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/632?force=true HTTP/1.1" 200 None +2025-03-06 10:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/631?force=true HTTP/1.1" 200 None +2025-03-06 10:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/630?force=true HTTP/1.1" 200 None +2025-03-06 10:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/629?force=true HTTP/1.1" 200 None +2025-03-06 10:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/625?force=true HTTP/1.1" 200 None +2025-03-06 10:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/624?force=true HTTP/1.1" 200 None +2025-03-06 10:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/623?force=true HTTP/1.1" 200 None +2025-03-06 10:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/619?force=true HTTP/1.1" 200 None +2025-03-06 10:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/618?force=true HTTP/1.1" 200 None +2025-03-06 10:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/617?force=true HTTP/1.1" 200 None +2025-03-06 10:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/613?force=true HTTP/1.1" 200 None +2025-03-06 10:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/612?force=true HTTP/1.1" 200 None +2025-03-06 10:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/611?force=true HTTP/1.1" 200 None +2025-03-06 10:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/607?force=true HTTP/1.1" 200 None +2025-03-06 10:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/606?force=true HTTP/1.1" 200 None +2025-03-06 10:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/605?force=true HTTP/1.1" 200 None +2025-03-06 10:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/604?force=true HTTP/1.1" 200 None +2025-03-06 10:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/603?force=true HTTP/1.1" 200 None +2025-03-06 10:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/602?force=true HTTP/1.1" 200 None +2025-03-06 10:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/601?force=true HTTP/1.1" 200 None +2025-03-06 10:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/600?force=true HTTP/1.1" 200 None +2025-03-06 10:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/599?force=true HTTP/1.1" 200 None +2025-03-06 10:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/598?force=true HTTP/1.1" 200 None +2025-03-06 10:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/597?force=true HTTP/1.1" 200 None +2025-03-06 10:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/596?force=true HTTP/1.1" 200 None +2025-03-06 10:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/595?force=true HTTP/1.1" 200 None +2025-03-06 10:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/594?force=true HTTP/1.1" 200 None +2025-03-06 10:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/593?force=true HTTP/1.1" 200 None +2025-03-06 10:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/592?force=true HTTP/1.1" 200 None +2025-03-06 10:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/591?force=true HTTP/1.1" 200 None +2025-03-06 10:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/590?force=true HTTP/1.1" 200 None +2025-03-06 10:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/589?force=true HTTP/1.1" 200 None +2025-03-06 10:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/588?force=true HTTP/1.1" 200 None +2025-03-06 10:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/587?force=true HTTP/1.1" 200 None +2025-03-06 10:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/586?force=true HTTP/1.1" 200 None +2025-03-06 10:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/585?force=true HTTP/1.1" 200 None +2025-03-06 10:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/584?force=true HTTP/1.1" 200 None +2025-03-06 10:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/583?force=true HTTP/1.1" 200 None +2025-03-06 10:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/582?force=true HTTP/1.1" 200 None +2025-03-06 10:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/581?force=true HTTP/1.1" 200 None +2025-03-06 10:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/580?force=true HTTP/1.1" 200 None +2025-03-06 10:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/579?force=true HTTP/1.1" 200 None +2025-03-06 10:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/568?force=true HTTP/1.1" 200 None +2025-03-06 10:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/304?force=true HTTP/1.1" 200 None +2025-03-06 10:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/293?force=true HTTP/1.1" 200 None +2025-03-06 10:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/282?force=true HTTP/1.1" 200 None +2025-03-06 10:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/195?force=true HTTP/1.1" 200 None +2025-03-06 10:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/194?force=true HTTP/1.1" 200 None +2025-03-06 10:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/193?force=true HTTP/1.1" 200 None +2025-03-06 10:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/192?force=true HTTP/1.1" 200 None +2025-03-06 10:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/191?force=true HTTP/1.1" 200 None +2025-03-06 10:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/190?force=true HTTP/1.1" 200 None +2025-03-06 10:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/189?force=true HTTP/1.1" 200 None +2025-03-06 10:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/188?force=true HTTP/1.1" 200 None +2025-03-06 10:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/187?force=true HTTP/1.1" 200 None +2025-03-06 10:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/186?force=true HTTP/1.1" 200 None +2025-03-06 10:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/185?force=true HTTP/1.1" 200 None +2025-03-06 10:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/184?force=true HTTP/1.1" 200 None +2025-03-06 10:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/183?force=true HTTP/1.1" 200 None +2025-03-06 10:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/182?force=true HTTP/1.1" 200 None +2025-03-06 10:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/181?force=true HTTP/1.1" 200 None +2025-03-06 10:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/180?force=true HTTP/1.1" 200 None +2025-03-06 10:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/179?force=true HTTP/1.1" 200 None +2025-03-06 10:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/178?force=true HTTP/1.1" 200 None +2025-03-06 10:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/177?force=true HTTP/1.1" 200 None +2025-03-06 10:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/176?force=true HTTP/1.1" 200 None +2025-03-06 10:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/175?force=true HTTP/1.1" 200 None +2025-03-06 10:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/174?force=true HTTP/1.1" 200 None +2025-03-06 10:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/173?force=true HTTP/1.1" 200 None +2025-03-06 10:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/172?force=true HTTP/1.1" 200 None +2025-03-06 10:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/171?force=true HTTP/1.1" 200 None +2025-03-06 10:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/170?force=true HTTP/1.1" 200 None +2025-03-06 10:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/169?force=true HTTP/1.1" 200 None +2025-03-06 10:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/168?force=true HTTP/1.1" 200 None +2025-03-06 10:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/167?force=true HTTP/1.1" 200 None +2025-03-06 10:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/166?force=true HTTP/1.1" 200 None +2025-03-06 10:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/165?force=true HTTP/1.1" 200 None +2025-03-06 10:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/164?force=true HTTP/1.1" 200 None +2025-03-06 10:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/163?force=true HTTP/1.1" 200 None +2025-03-06 10:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/162?force=true HTTP/1.1" 200 None +2025-03-06 10:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/161?force=true HTTP/1.1" 200 None +2025-03-06 10:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/160?force=true HTTP/1.1" 200 None +2025-03-06 10:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/159?force=true HTTP/1.1" 200 None +2025-03-06 10:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/158?force=true HTTP/1.1" 200 None +2025-03-06 10:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/157?force=true HTTP/1.1" 200 None +2025-03-06 10:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/156?force=true HTTP/1.1" 200 None +2025-03-06 10:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/155?force=true HTTP/1.1" 200 None +2025-03-06 10:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/154?force=true HTTP/1.1" 200 None +2025-03-06 10:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/153?force=true HTTP/1.1" 200 None +2025-03-06 10:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/152?force=true HTTP/1.1" 200 None +2025-03-06 10:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/151?force=true HTTP/1.1" 200 None +2025-03-06 10:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/150?force=true HTTP/1.1" 200 None +2025-03-06 10:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/149?force=true HTTP/1.1" 200 None +2025-03-06 10:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/148?force=true HTTP/1.1" 200 None +2025-03-06 10:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/147?force=true HTTP/1.1" 200 None +2025-03-06 10:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/146?force=true HTTP/1.1" 200 None +2025-03-06 10:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/145?force=true HTTP/1.1" 200 None +2025-03-06 10:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/144?force=true HTTP/1.1" 200 None +2025-03-06 10:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/143?force=true HTTP/1.1" 200 None +2025-03-06 10:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/142?force=true HTTP/1.1" 200 None +2025-03-06 10:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/141?force=true HTTP/1.1" 200 None +2025-03-06 10:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/140?force=true HTTP/1.1" 200 None +2025-03-06 10:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/139?force=true HTTP/1.1" 200 None +2025-03-06 10:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/138?force=true HTTP/1.1" 200 None +2025-03-06 10:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/137?force=true HTTP/1.1" 200 None +2025-03-06 10:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/136?force=true HTTP/1.1" 200 None +2025-03-06 10:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/135?force=true HTTP/1.1" 200 None +2025-03-06 10:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/134?force=true HTTP/1.1" 200 None +2025-03-06 10:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/133?force=true HTTP/1.1" 200 None +2025-03-06 10:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/132?force=true HTTP/1.1" 200 None +2025-03-06 10:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/131?force=true HTTP/1.1" 200 None +2025-03-06 10:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/130?force=true HTTP/1.1" 200 None +2025-03-06 10:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/129?force=true HTTP/1.1" 200 None +2025-03-06 10:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/128?force=true HTTP/1.1" 200 None +2025-03-06 10:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/127?force=true HTTP/1.1" 200 None +2025-03-06 10:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/126?force=true HTTP/1.1" 200 None +2025-03-06 10:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/125?force=true HTTP/1.1" 200 None +2025-03-06 10:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/124?force=true HTTP/1.1" 200 None +2025-03-06 10:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/123?force=true HTTP/1.1" 200 None +2025-03-06 10:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/122?force=true HTTP/1.1" 200 None +2025-03-06 10:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/121?force=true HTTP/1.1" 200 None +2025-03-06 10:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/120?force=true HTTP/1.1" 200 None +2025-03-06 10:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/119?force=true HTTP/1.1" 200 None +2025-03-06 10:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/115?force=true HTTP/1.1" 200 None +2025-03-06 10:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/114?force=true HTTP/1.1" 200 None +2025-03-06 10:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/113?force=true HTTP/1.1" 200 None +2025-03-06 10:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/109?force=true HTTP/1.1" 200 None +2025-03-06 10:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/108?force=true HTTP/1.1" 200 None +2025-03-06 10:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/107?force=true HTTP/1.1" 200 None +2025-03-06 10:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/106?force=true HTTP/1.1" 200 None +2025-03-06 10:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/105?force=true HTTP/1.1" 200 None +2025-03-06 10:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/104?force=true HTTP/1.1" 200 None +2025-03-06 10:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/102?force=true HTTP/1.1" 200 None +2025-03-06 10:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/101?force=true HTTP/1.1" 200 None +2025-03-06 10:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/100?force=true HTTP/1.1" 200 None +2025-03-06 10:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/99?force=true HTTP/1.1" 200 None +2025-03-06 10:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/98?force=true HTTP/1.1" 200 None +2025-03-06 10:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/97?force=true HTTP/1.1" 200 None +2025-03-06 10:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/96?force=true HTTP/1.1" 200 None +2025-03-06 10:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/95?force=true HTTP/1.1" 200 None +2025-03-06 10:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/94?force=true HTTP/1.1" 200 None +2025-03-06 10:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/93?force=true HTTP/1.1" 200 None +2025-03-06 10:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/92?force=true HTTP/1.1" 200 None +2025-03-06 10:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/91?force=true HTTP/1.1" 200 None +2025-03-06 10:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/90?force=true HTTP/1.1" 200 None +2025-03-06 10:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/89?force=true HTTP/1.1" 200 None +2025-03-06 10:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/88?force=true HTTP/1.1" 200 None +2025-03-06 10:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/87?force=true HTTP/1.1" 200 None +2025-03-06 10:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/72?force=true HTTP/1.1" 200 None +2025-03-06 10:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/70?force=true HTTP/1.1" 200 None +2025-03-06 10:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/68?force=true HTTP/1.1" 200 None +2025-03-06 10:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/66?force=true HTTP/1.1" 200 None +2025-03-06 10:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/64?force=true HTTP/1.1" 200 None +2025-03-06 10:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/62?force=true HTTP/1.1" 200 None +2025-03-06 10:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/6?force=true HTTP/1.1" 200 None +2025-03-06 10:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/35?force=True HTTP/1.1" 200 None +2025-03-06 10:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/37?force=True HTTP/1.1" 200 None +2025-03-06 10:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/23?force=True HTTP/1.1" 200 None +2025-03-06 10:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/42?force=True HTTP/1.1" 200 None +2025-03-06 10:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/34?force=True HTTP/1.1" 200 None +2025-03-06 10:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/33?force=True HTTP/1.1" 200 None +2025-03-06 10:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 10:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/36?force=True HTTP/1.1" 200 None +2025-03-06 10:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/273?force=True HTTP/1.1" 200 None +2025-03-06 10:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/272?force=True HTTP/1.1" 200 None +2025-03-06 10:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/38?force=True HTTP/1.1" 200 None +2025-03-06 10:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/275?force=True HTTP/1.1" 200 None +2025-03-06 10:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/276?force=True HTTP/1.1" 200 None +2025-03-06 10:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/274?force=True HTTP/1.1" 200 None +2025-03-06 10:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 10:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 10:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 10:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2101?force=True HTTP/1.1" 200 None +2025-03-06 10:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/519?force=True HTTP/1.1" 200 None +2025-03-06 10:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/517?force=True HTTP/1.1" 200 None +2025-03-06 10:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/504?force=True HTTP/1.1" 200 None +2025-03-06 10:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/207?force=True HTTP/1.1" 200 None +2025-03-06 10:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/200?force=True HTTP/1.1" 200 None +2025-03-06 10:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 10:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/1890 HTTP/1.1" 404 None +2025-03-06 10:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2169 HTTP/1.1" 200 None +2025-03-06 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2170 HTTP/1.1" 200 None +2025-03-06 10:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2171 HTTP/1.1" 200 None +2025-03-06 10:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2172 HTTP/1.1" 200 None +2025-03-06 10:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2173 HTTP/1.1" 200 None +2025-03-06 10:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2174 HTTP/1.1" 200 None +2025-03-06 10:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2175 HTTP/1.1" 200 None +2025-03-06 10:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2176 HTTP/1.1" 200 None +2025-03-06 10:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2177 HTTP/1.1" 200 None +2025-03-06 10:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2178 HTTP/1.1" 200 None +2025-03-06 10:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2179 HTTP/1.1" 200 None +2025-03-06 10:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2180 HTTP/1.1" 200 None +2025-03-06 10:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2181 HTTP/1.1" 200 None +2025-03-06 10:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2182 HTTP/1.1" 200 None +2025-03-06 10:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 10:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/303 HTTP/1.1" 400 None +2025-03-06 10:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/304 HTTP/1.1" 200 None +2025-03-06 10:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/304 HTTP/1.1" 400 None +2025-03-06 10:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2182?force=true HTTP/1.1" 200 None +2025-03-06 10:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2181?force=true HTTP/1.1" 200 None +2025-03-06 10:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2180?force=true HTTP/1.1" 200 None +2025-03-06 10:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2179?force=true HTTP/1.1" 200 None +2025-03-06 10:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2178?force=true HTTP/1.1" 200 None +2025-03-06 10:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2177?force=true HTTP/1.1" 200 None +2025-03-06 10:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2176?force=true HTTP/1.1" 200 None +2025-03-06 10:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2175?force=true HTTP/1.1" 200 None +2025-03-06 10:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2174?force=true HTTP/1.1" 200 None +2025-03-06 10:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2173?force=true HTTP/1.1" 200 None +2025-03-06 10:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2172?force=true HTTP/1.1" 200 None +2025-03-06 10:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2171?force=true HTTP/1.1" 200 None +2025-03-06 10:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2170?force=true HTTP/1.1" 200 None +2025-03-06 10:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2169?force=true HTTP/1.1" 200 None +2025-03-06 10:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 10:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/304?force=True HTTP/1.1" 200 None +2025-03-06 10:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/303?force=True HTTP/1.1" 200 None +2025-03-06 10:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2183 HTTP/1.1" 200 None +2025-03-06 10:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2184 HTTP/1.1" 200 None +2025-03-06 10:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2185 HTTP/1.1" 200 None +2025-03-06 10:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2186 HTTP/1.1" 200 None +2025-03-06 10:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2187 HTTP/1.1" 200 None +2025-03-06 10:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2188 HTTP/1.1" 200 None +2025-03-06 10:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2189 HTTP/1.1" 200 None +2025-03-06 10:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2190 HTTP/1.1" 200 None +2025-03-06 10:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2191 HTTP/1.1" 200 None +2025-03-06 10:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2192 HTTP/1.1" 200 None +2025-03-06 10:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2193 HTTP/1.1" 200 None +2025-03-06 10:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2194 HTTP/1.1" 200 None +2025-03-06 10:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2195 HTTP/1.1" 200 None +2025-03-06 10:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2196 HTTP/1.1" 200 None +2025-03-06 10:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 10:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/305 HTTP/1.1" 400 None +2025-03-06 10:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 10:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/306 HTTP/1.1" 200 None +2025-03-06 10:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/306 HTTP/1.1" 400 None +2025-03-06 10:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2196?force=true HTTP/1.1" 200 None +2025-03-06 10:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2195?force=true HTTP/1.1" 200 None +2025-03-06 10:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2194?force=true HTTP/1.1" 200 None +2025-03-06 10:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2193?force=true HTTP/1.1" 200 None +2025-03-06 10:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2192?force=true HTTP/1.1" 200 None +2025-03-06 10:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2191?force=true HTTP/1.1" 200 None +2025-03-06 10:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2190?force=true HTTP/1.1" 200 None +2025-03-06 10:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2189?force=true HTTP/1.1" 200 None +2025-03-06 10:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2188?force=true HTTP/1.1" 200 None +2025-03-06 10:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2187?force=true HTTP/1.1" 200 None +2025-03-06 10:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2186?force=true HTTP/1.1" 200 None +2025-03-06 10:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2185?force=true HTTP/1.1" 200 None +2025-03-06 10:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2184?force=true HTTP/1.1" 200 None +2025-03-06 10:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2183?force=true HTTP/1.1" 200 None +2025-03-06 10:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 10:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/306?force=True HTTP/1.1" 200 None +2025-03-06 10:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/305?force=True HTTP/1.1" 200 None +2025-03-06 10:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2197 HTTP/1.1" 200 None +2025-03-06 10:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2198 HTTP/1.1" 200 None +2025-03-06 10:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2199 HTTP/1.1" 200 None +2025-03-06 10:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2200 HTTP/1.1" 200 None +2025-03-06 10:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2201 HTTP/1.1" 200 None +2025-03-06 10:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2202 HTTP/1.1" 200 None +2025-03-06 10:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2203 HTTP/1.1" 200 None +2025-03-06 10:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2204 HTTP/1.1" 200 None +2025-03-06 10:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2205 HTTP/1.1" 200 None +2025-03-06 10:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2206 HTTP/1.1" 200 None +2025-03-06 10:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2207 HTTP/1.1" 200 None +2025-03-06 10:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2208 HTTP/1.1" 200 None +2025-03-06 10:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2209 HTTP/1.1" 200 None +2025-03-06 10:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 10:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2210 HTTP/1.1" 200 None +2025-03-06 10:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 10:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/307 HTTP/1.1" 400 None +2025-03-06 10:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 10:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/308 HTTP/1.1" 200 None +2025-03-06 10:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/308 HTTP/1.1" 400 None +2025-03-06 10:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/307 HTTP/1.1" 200 None +2025-03-06 10:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/308 HTTP/1.1" 200 None +2025-03-06 10:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/308 HTTP/1.1" 200 None +2025-03-06 10:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 10:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 10:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 10:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 10:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 10:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 10:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:02:19 - INFO - create_for_product(product_id=2212, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:20 - INFO - create_for_product(product_id=2212, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:20 - INFO - create_for_product(product_id=2212, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:21 - INFO - create_for_product(product_id=2212, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:22 - INFO - create_for_product(product_id=2212, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:22 - INFO - create_for_product(product_id=2212, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:23 - INFO - create_for_product(product_id=2211, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:23 - INFO - create_for_product(product_id=2211, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:24 - INFO - create_for_product(product_id=2211, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:25 - INFO - create_for_product(product_id=2211, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:26 - INFO - create_for_product(product_id=2211, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:26 - INFO - create_for_product(product_id=2211, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 400 None +2025-03-06 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 400 None +2025-03-06 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 400 None +2025-03-06 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 400 None +2025-03-06 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 400 None +2025-03-06 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2212 HTTP/1.1" 200 None +2025-03-06 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2212 HTTP/1.1" 400 None +2025-03-06 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 400 None +2025-03-06 11:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 400 None +2025-03-06 11:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 400 None +2025-03-06 11:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 400 None +2025-03-06 11:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 400 None +2025-03-06 11:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2211 HTTP/1.1" 200 None +2025-03-06 11:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2211 HTTP/1.1" 400 None +2025-03-06 11:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2212?force=True HTTP/1.1" 200 None +2025-03-06 11:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2211?force=True HTTP/1.1" 200 None +2025-03-06 11:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:04:21 - INFO - create_for_product(product_id=2214, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:23 - INFO - create_for_product(product_id=2214, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:24 - INFO - create_for_product(product_id=2214, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:24 - INFO - create_for_product(product_id=2214, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:25 - INFO - create_for_product(product_id=2214, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:25 - INFO - create_for_product(product_id=2214, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:25 - INFO - create_for_product(product_id=2213, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:26 - INFO - create_for_product(product_id=2213, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:27 - INFO - create_for_product(product_id=2213, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:28 - INFO - create_for_product(product_id=2213, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:28 - INFO - create_for_product(product_id=2213, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:29 - INFO - create_for_product(product_id=2213, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2213 HTTP/1.1" 200 None +2025-03-06 11:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2214 HTTP/1.1" 400 None +2025-03-06 11:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2214 HTTP/1.1" 200 None +2025-03-06 11:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2214?force=True HTTP/1.1" 200 None +2025-03-06 11:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2213?force=True HTTP/1.1" 200 None +2025-03-06 11:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:07:12 - INFO - create_for_product(product_id=2216, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:12 - INFO - create_for_product(product_id=2216, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:13 - INFO - create_for_product(product_id=2216, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:14 - INFO - create_for_product(product_id=2216, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:14 - INFO - create_for_product(product_id=2216, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:15 - INFO - create_for_product(product_id=2216, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:15 - INFO - create_for_product(product_id=2215, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:16 - INFO - create_for_product(product_id=2215, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:17 - INFO - create_for_product(product_id=2215, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:17 - INFO - create_for_product(product_id=2215, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:18 - INFO - create_for_product(product_id=2215, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:18 - INFO - create_for_product(product_id=2215, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 400 None +2025-03-06 11:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 400 None +2025-03-06 11:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 400 None +2025-03-06 11:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 400 None +2025-03-06 11:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 400 None +2025-03-06 11:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2216 HTTP/1.1" 200 None +2025-03-06 11:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2216 HTTP/1.1" 400 None +2025-03-06 11:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 400 None +2025-03-06 11:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 400 None +2025-03-06 11:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 400 None +2025-03-06 11:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 400 None +2025-03-06 11:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 400 None +2025-03-06 11:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2215 HTTP/1.1" 200 None +2025-03-06 11:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2215 HTTP/1.1" 400 None +2025-03-06 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2216?force=True HTTP/1.1" 200 None +2025-03-06 11:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2215?force=True HTTP/1.1" 200 None +2025-03-06 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-06 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-06 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:08:53 - INFO - create_for_product(product_id=2218, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:53 - INFO - create_for_product(product_id=2218, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:54 - INFO - create_for_product(product_id=2218, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:55 - INFO - create_for_product(product_id=2218, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:55 - INFO - create_for_product(product_id=2218, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:56 - INFO - create_for_product(product_id=2218, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:08:56 - INFO - create_for_product(product_id=2217, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:57 - INFO - create_for_product(product_id=2217, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:58 - INFO - create_for_product(product_id=2217, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:59 - INFO - create_for_product(product_id=2217, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:59 - INFO - create_for_product(product_id=2217, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:08:59 - INFO - create_for_product(product_id=2217, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 400 None +2025-03-06 11:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 400 None +2025-03-06 11:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 400 None +2025-03-06 11:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 400 None +2025-03-06 11:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 400 None +2025-03-06 11:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2218 HTTP/1.1" 200 None +2025-03-06 11:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2218 HTTP/1.1" 400 None +2025-03-06 11:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 400 None +2025-03-06 11:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 400 None +2025-03-06 11:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 400 None +2025-03-06 11:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 400 None +2025-03-06 11:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 400 None +2025-03-06 11:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2217 HTTP/1.1" 200 None +2025-03-06 11:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2217 HTTP/1.1" 400 None +2025-03-06 11:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2218?force=True HTTP/1.1" 200 None +2025-03-06 11:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2217?force=True HTTP/1.1" 200 None +2025-03-06 11:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:12:46 - INFO - create_for_product(product_id=2221, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:46 - INFO - create_for_product(product_id=2221, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:47 - INFO - create_for_product(product_id=2221, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:48 - INFO - create_for_product(product_id=2221, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:48 - INFO - create_for_product(product_id=2221, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:49 - INFO - create_for_product(product_id=2221, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:49 - INFO - create_for_product(product_id=2220, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:50 - INFO - create_for_product(product_id=2220, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:51 - INFO - create_for_product(product_id=2220, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:51 - INFO - create_for_product(product_id=2220, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:52 - INFO - create_for_product(product_id=2220, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:52 - INFO - create_for_product(product_id=2220, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 400 None +2025-03-06 11:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 400 None +2025-03-06 11:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 400 None +2025-03-06 11:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 400 None +2025-03-06 11:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 400 None +2025-03-06 11:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2221 HTTP/1.1" 200 None +2025-03-06 11:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2221 HTTP/1.1" 400 None +2025-03-06 11:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 400 None +2025-03-06 11:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 400 None +2025-03-06 11:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 400 None +2025-03-06 11:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 400 None +2025-03-06 11:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 400 None +2025-03-06 11:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2220 HTTP/1.1" 200 None +2025-03-06 11:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2220 HTTP/1.1" 400 None +2025-03-06 11:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2221?force=True HTTP/1.1" 200 None +2025-03-06 11:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2220?force=True HTTP/1.1" 200 None +2025-03-06 11:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:14:09 - INFO - create_for_product(product_id=2223, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:10 - INFO - create_for_product(product_id=2223, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:12 - INFO - create_for_product(product_id=2223, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:13 - INFO - create_for_product(product_id=2223, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:13 - INFO - create_for_product(product_id=2223, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:14 - INFO - create_for_product(product_id=2223, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:14 - INFO - create_for_product(product_id=2222, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:15 - INFO - create_for_product(product_id=2222, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:16 - INFO - create_for_product(product_id=2222, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:17 - INFO - create_for_product(product_id=2222, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:17 - INFO - create_for_product(product_id=2222, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:18 - INFO - create_for_product(product_id=2222, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 400 None +2025-03-06 11:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 400 None +2025-03-06 11:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 400 None +2025-03-06 11:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 400 None +2025-03-06 11:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 400 None +2025-03-06 11:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2223 HTTP/1.1" 200 None +2025-03-06 11:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2223 HTTP/1.1" 400 None +2025-03-06 11:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2222 HTTP/1.1" 200 None +2025-03-06 11:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2210?force=true HTTP/1.1" 200 None +2025-03-06 11:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2209?force=true HTTP/1.1" 200 None +2025-03-06 11:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2208?force=true HTTP/1.1" 200 None +2025-03-06 11:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2207?force=true HTTP/1.1" 200 None +2025-03-06 11:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2206?force=true HTTP/1.1" 200 None +2025-03-06 11:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2205?force=true HTTP/1.1" 200 None +2025-03-06 11:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2204?force=true HTTP/1.1" 200 None +2025-03-06 11:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2203?force=true HTTP/1.1" 200 None +2025-03-06 11:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2202?force=true HTTP/1.1" 200 None +2025-03-06 11:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2201?force=true HTTP/1.1" 200 None +2025-03-06 11:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2200?force=true HTTP/1.1" 200 None +2025-03-06 11:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2199?force=true HTTP/1.1" 200 None +2025-03-06 11:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2198?force=true HTTP/1.1" 200 None +2025-03-06 11:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2197?force=true HTTP/1.1" 200 None +2025-03-06 11:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2223?force=True HTTP/1.1" 200 None +2025-03-06 11:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2222?force=True HTTP/1.1" 200 None +2025-03-06 11:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/308?force=True HTTP/1.1" 200 None +2025-03-06 11:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/307?force=True HTTP/1.1" 200 None +2025-03-06 11:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2225 HTTP/1.1" 200 None +2025-03-06 11:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2226 HTTP/1.1" 200 None +2025-03-06 11:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2227 HTTP/1.1" 200 None +2025-03-06 11:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2228 HTTP/1.1" 200 None +2025-03-06 11:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2229 HTTP/1.1" 200 None +2025-03-06 11:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2230 HTTP/1.1" 200 None +2025-03-06 11:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2231 HTTP/1.1" 200 None +2025-03-06 11:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2232 HTTP/1.1" 200 None +2025-03-06 11:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2233 HTTP/1.1" 200 None +2025-03-06 11:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2234 HTTP/1.1" 200 None +2025-03-06 11:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2235 HTTP/1.1" 200 None +2025-03-06 11:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2236 HTTP/1.1" 200 None +2025-03-06 11:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2237 HTTP/1.1" 200 None +2025-03-06 11:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2238 HTTP/1.1" 200 None +2025-03-06 11:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/309 HTTP/1.1" 200 None +2025-03-06 11:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/310 HTTP/1.1" 200 None +2025-03-06 11:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/310 HTTP/1.1" 200 None +2025-03-06 11:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 400 None +2025-03-06 11:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:16:46 - INFO - create_for_product(product_id=2240, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:47 - INFO - create_for_product(product_id=2240, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:47 - INFO - create_for_product(product_id=2240, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:48 - INFO - create_for_product(product_id=2240, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:49 - INFO - create_for_product(product_id=2240, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:49 - INFO - create_for_product(product_id=2240, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:49 - INFO - create_for_product(product_id=2239, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:50 - INFO - create_for_product(product_id=2239, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:51 - INFO - create_for_product(product_id=2239, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:52 - INFO - create_for_product(product_id=2239, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:52 - INFO - create_for_product(product_id=2239, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:53 - INFO - create_for_product(product_id=2239, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2240 HTTP/1.1" 200 None +2025-03-06 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2240 HTTP/1.1" 400 None +2025-03-06 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2239 HTTP/1.1" 200 None +2025-03-06 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2238?force=true HTTP/1.1" 200 None +2025-03-06 11:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2237?force=true HTTP/1.1" 200 None +2025-03-06 11:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2236?force=true HTTP/1.1" 200 None +2025-03-06 11:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2235?force=true HTTP/1.1" 200 None +2025-03-06 11:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2234?force=true HTTP/1.1" 200 None +2025-03-06 11:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2233?force=true HTTP/1.1" 200 None +2025-03-06 11:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2232?force=true HTTP/1.1" 200 None +2025-03-06 11:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2231?force=true HTTP/1.1" 200 None +2025-03-06 11:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2230?force=true HTTP/1.1" 200 None +2025-03-06 11:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2229?force=true HTTP/1.1" 200 None +2025-03-06 11:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2228?force=true HTTP/1.1" 200 None +2025-03-06 11:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2227?force=true HTTP/1.1" 200 None +2025-03-06 11:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2226?force=true HTTP/1.1" 200 None +2025-03-06 11:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2225?force=true HTTP/1.1" 200 None +2025-03-06 11:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2240?force=True HTTP/1.1" 200 None +2025-03-06 11:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2239?force=True HTTP/1.1" 200 None +2025-03-06 11:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/310?force=True HTTP/1.1" 200 None +2025-03-06 11:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/309?force=True HTTP/1.1" 200 None +2025-03-06 11:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2241 HTTP/1.1" 200 None +2025-03-06 11:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2242 HTTP/1.1" 200 None +2025-03-06 11:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2243 HTTP/1.1" 200 None +2025-03-06 11:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2244 HTTP/1.1" 200 None +2025-03-06 11:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2245 HTTP/1.1" 200 None +2025-03-06 11:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2246 HTTP/1.1" 200 None +2025-03-06 11:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2247 HTTP/1.1" 200 None +2025-03-06 11:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2248 HTTP/1.1" 200 None +2025-03-06 11:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2249 HTTP/1.1" 200 None +2025-03-06 11:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2250 HTTP/1.1" 200 None +2025-03-06 11:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2251 HTTP/1.1" 200 None +2025-03-06 11:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2252 HTTP/1.1" 200 None +2025-03-06 11:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2253 HTTP/1.1" 200 None +2025-03-06 11:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2254 HTTP/1.1" 200 None +2025-03-06 11:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/311 HTTP/1.1" 400 None +2025-03-06 11:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/312 HTTP/1.1" 200 None +2025-03-06 11:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/312 HTTP/1.1" 400 None +2025-03-06 11:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/312?force=True HTTP/1.1" 200 None +2025-03-06 11:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/311?force=True HTTP/1.1" 200 None +2025-03-06 11:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/313 HTTP/1.1" 200 None +2025-03-06 11:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/314 HTTP/1.1" 200 None +2025-03-06 11:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/314 HTTP/1.1" 200 None +2025-03-06 11:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2254?force=true HTTP/1.1" 200 None +2025-03-06 11:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2253?force=true HTTP/1.1" 200 None +2025-03-06 11:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2252?force=true HTTP/1.1" 200 None +2025-03-06 11:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2251?force=true HTTP/1.1" 200 None +2025-03-06 11:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2250?force=true HTTP/1.1" 200 None +2025-03-06 11:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2249?force=true HTTP/1.1" 200 None +2025-03-06 11:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2248?force=true HTTP/1.1" 200 None +2025-03-06 11:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2247?force=true HTTP/1.1" 200 None +2025-03-06 11:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2246?force=true HTTP/1.1" 200 None +2025-03-06 11:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2245?force=true HTTP/1.1" 200 None +2025-03-06 11:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2244?force=true HTTP/1.1" 200 None +2025-03-06 11:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2243?force=true HTTP/1.1" 200 None +2025-03-06 11:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2242?force=true HTTP/1.1" 200 None +2025-03-06 11:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2241?force=true HTTP/1.1" 200 None +2025-03-06 11:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/314?force=True HTTP/1.1" 200 None +2025-03-06 11:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/313?force=True HTTP/1.1" 200 None +2025-03-06 11:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2255 HTTP/1.1" 200 None +2025-03-06 11:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2256 HTTP/1.1" 200 None +2025-03-06 11:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2257 HTTP/1.1" 200 None +2025-03-06 11:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2258 HTTP/1.1" 200 None +2025-03-06 11:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2259 HTTP/1.1" 200 None +2025-03-06 11:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2260 HTTP/1.1" 200 None +2025-03-06 11:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2261 HTTP/1.1" 200 None +2025-03-06 11:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2262 HTTP/1.1" 200 None +2025-03-06 11:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2263 HTTP/1.1" 200 None +2025-03-06 11:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2264 HTTP/1.1" 200 None +2025-03-06 11:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2265 HTTP/1.1" 200 None +2025-03-06 11:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2266 HTTP/1.1" 200 None +2025-03-06 11:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2267 HTTP/1.1" 200 None +2025-03-06 11:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2268 HTTP/1.1" 200 None +2025-03-06 11:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/315 HTTP/1.1" 200 None +2025-03-06 11:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/316 HTTP/1.1" 200 None +2025-03-06 11:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/316 HTTP/1.1" 200 None +2025-03-06 11:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2268?force=true HTTP/1.1" 200 None +2025-03-06 11:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2267?force=true HTTP/1.1" 200 None +2025-03-06 11:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2266?force=true HTTP/1.1" 200 None +2025-03-06 11:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2265?force=true HTTP/1.1" 200 None +2025-03-06 11:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2264?force=true HTTP/1.1" 200 None +2025-03-06 11:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2263?force=true HTTP/1.1" 200 None +2025-03-06 11:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2262?force=true HTTP/1.1" 200 None +2025-03-06 11:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2261?force=true HTTP/1.1" 200 None +2025-03-06 11:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2260?force=true HTTP/1.1" 200 None +2025-03-06 11:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2259?force=true HTTP/1.1" 200 None +2025-03-06 11:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2258?force=true HTTP/1.1" 200 None +2025-03-06 11:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2257?force=true HTTP/1.1" 200 None +2025-03-06 11:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2256?force=true HTTP/1.1" 200 None +2025-03-06 11:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2255?force=true HTTP/1.1" 200 None +2025-03-06 11:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/316?force=True HTTP/1.1" 200 None +2025-03-06 11:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/315?force=True HTTP/1.1" 200 None +2025-03-06 11:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2269 HTTP/1.1" 200 None +2025-03-06 11:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2270 HTTP/1.1" 200 None +2025-03-06 11:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2271 HTTP/1.1" 200 None +2025-03-06 11:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2272 HTTP/1.1" 200 None +2025-03-06 11:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2273 HTTP/1.1" 200 None +2025-03-06 11:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2274 HTTP/1.1" 200 None +2025-03-06 11:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2275 HTTP/1.1" 200 None +2025-03-06 11:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2276 HTTP/1.1" 200 None +2025-03-06 11:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2277 HTTP/1.1" 200 None +2025-03-06 11:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2278 HTTP/1.1" 200 None +2025-03-06 11:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2279 HTTP/1.1" 200 None +2025-03-06 11:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2280 HTTP/1.1" 200 None +2025-03-06 11:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2281 HTTP/1.1" 200 None +2025-03-06 11:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2282 HTTP/1.1" 200 None +2025-03-06 11:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/317 HTTP/1.1" 200 None +2025-03-06 11:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/318 HTTP/1.1" 200 None +2025-03-06 11:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/318 HTTP/1.1" 200 None +2025-03-06 11:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2282?force=true HTTP/1.1" 200 None +2025-03-06 11:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2281?force=true HTTP/1.1" 200 None +2025-03-06 11:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2280?force=true HTTP/1.1" 200 None +2025-03-06 11:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2279?force=true HTTP/1.1" 200 None +2025-03-06 11:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2278?force=true HTTP/1.1" 200 None +2025-03-06 11:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2277?force=true HTTP/1.1" 200 None +2025-03-06 11:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2276?force=true HTTP/1.1" 200 None +2025-03-06 11:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2275?force=true HTTP/1.1" 200 None +2025-03-06 11:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2274?force=true HTTP/1.1" 200 None +2025-03-06 11:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2273?force=true HTTP/1.1" 200 None +2025-03-06 11:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2272?force=true HTTP/1.1" 200 None +2025-03-06 11:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2271?force=true HTTP/1.1" 200 None +2025-03-06 11:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2270?force=true HTTP/1.1" 200 None +2025-03-06 11:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2269?force=true HTTP/1.1" 200 None +2025-03-06 11:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/318?force=True HTTP/1.1" 200 None +2025-03-06 11:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/317?force=True HTTP/1.1" 200 None +2025-03-06 11:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2283 HTTP/1.1" 200 None +2025-03-06 11:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2284 HTTP/1.1" 200 None +2025-03-06 11:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2285 HTTP/1.1" 200 None +2025-03-06 11:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2286 HTTP/1.1" 200 None +2025-03-06 11:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2287 HTTP/1.1" 200 None +2025-03-06 11:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2288 HTTP/1.1" 200 None +2025-03-06 11:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2289 HTTP/1.1" 200 None +2025-03-06 11:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2290 HTTP/1.1" 200 None +2025-03-06 11:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2291 HTTP/1.1" 200 None +2025-03-06 11:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2292 HTTP/1.1" 200 None +2025-03-06 11:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2293 HTTP/1.1" 200 None +2025-03-06 11:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2294 HTTP/1.1" 200 None +2025-03-06 11:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2295 HTTP/1.1" 200 None +2025-03-06 11:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2296 HTTP/1.1" 200 None +2025-03-06 11:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2270?per_page=100& HTTP/1.1" 404 None +2025-03-06 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/319 HTTP/1.1" 200 None +2025-03-06 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/320 HTTP/1.1" 200 None +2025-03-06 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2269?per_page=100& HTTP/1.1" 404 None +2025-03-06 11:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/320 HTTP/1.1" 200 None +2025-03-06 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2296?force=true HTTP/1.1" 200 None +2025-03-06 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2295?force=true HTTP/1.1" 200 None +2025-03-06 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2294?force=true HTTP/1.1" 200 None +2025-03-06 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2293?force=true HTTP/1.1" 200 None +2025-03-06 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2292?force=true HTTP/1.1" 200 None +2025-03-06 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2291?force=true HTTP/1.1" 200 None +2025-03-06 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2290?force=true HTTP/1.1" 200 None +2025-03-06 11:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2289?force=true HTTP/1.1" 200 None +2025-03-06 11:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2288?force=true HTTP/1.1" 200 None +2025-03-06 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2287?force=true HTTP/1.1" 200 None +2025-03-06 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2286?force=true HTTP/1.1" 200 None +2025-03-06 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2285?force=true HTTP/1.1" 200 None +2025-03-06 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2284?force=true HTTP/1.1" 200 None +2025-03-06 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2283?force=true HTTP/1.1" 200 None +2025-03-06 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/320?force=True HTTP/1.1" 200 None +2025-03-06 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/319?force=True HTTP/1.1" 200 None +2025-03-06 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2297 HTTP/1.1" 200 None +2025-03-06 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2298 HTTP/1.1" 200 None +2025-03-06 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2299 HTTP/1.1" 200 None +2025-03-06 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2300 HTTP/1.1" 200 None +2025-03-06 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2301 HTTP/1.1" 200 None +2025-03-06 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2302 HTTP/1.1" 200 None +2025-03-06 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2303 HTTP/1.1" 200 None +2025-03-06 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2304 HTTP/1.1" 200 None +2025-03-06 11:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2305 HTTP/1.1" 200 None +2025-03-06 11:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2306 HTTP/1.1" 200 None +2025-03-06 11:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2307 HTTP/1.1" 200 None +2025-03-06 11:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2308 HTTP/1.1" 200 None +2025-03-06 11:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2309 HTTP/1.1" 200 None +2025-03-06 11:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2310 HTTP/1.1" 200 None +2025-03-06 11:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2284 HTTP/1.1" 404 None +2025-03-06 11:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/321 HTTP/1.1" 200 None +2025-03-06 11:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/322 HTTP/1.1" 200 None +2025-03-06 11:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2283 HTTP/1.1" 404 None +2025-03-06 11:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/322 HTTP/1.1" 200 None +2025-03-06 11:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/322?force=True HTTP/1.1" 200 None +2025-03-06 11:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/321?force=True HTTP/1.1" 200 None +2025-03-06 11:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2310?force=true HTTP/1.1" 200 None +2025-03-06 11:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2309?force=true HTTP/1.1" 200 None +2025-03-06 11:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2308?force=true HTTP/1.1" 200 None +2025-03-06 11:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2307?force=true HTTP/1.1" 200 None +2025-03-06 11:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2306?force=true HTTP/1.1" 200 None +2025-03-06 11:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2305?force=true HTTP/1.1" 200 None +2025-03-06 11:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2304?force=true HTTP/1.1" 200 None +2025-03-06 11:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2303?force=true HTTP/1.1" 200 None +2025-03-06 11:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2302?force=true HTTP/1.1" 200 None +2025-03-06 11:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2301?force=true HTTP/1.1" 200 None +2025-03-06 11:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2300?force=true HTTP/1.1" 200 None +2025-03-06 11:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2299?force=true HTTP/1.1" 200 None +2025-03-06 11:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2298?force=true HTTP/1.1" 200 None +2025-03-06 11:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2297?force=true HTTP/1.1" 200 None +2025-03-06 11:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2311 HTTP/1.1" 200 None +2025-03-06 11:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2312 HTTP/1.1" 200 None +2025-03-06 11:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2313 HTTP/1.1" 200 None +2025-03-06 11:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2314 HTTP/1.1" 200 None +2025-03-06 11:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2315 HTTP/1.1" 200 None +2025-03-06 11:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2316 HTTP/1.1" 200 None +2025-03-06 11:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2317 HTTP/1.1" 200 None +2025-03-06 11:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2318 HTTP/1.1" 200 None +2025-03-06 11:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2319 HTTP/1.1" 200 None +2025-03-06 11:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2320 HTTP/1.1" 200 None +2025-03-06 11:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2321 HTTP/1.1" 200 None +2025-03-06 11:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2322 HTTP/1.1" 200 None +2025-03-06 11:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2323 HTTP/1.1" 200 None +2025-03-06 11:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2324 HTTP/1.1" 200 None +2025-03-06 11:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2298 HTTP/1.1" 404 None +2025-03-06 11:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/323 HTTP/1.1" 200 None +2025-03-06 11:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/324 HTTP/1.1" 200 None +2025-03-06 11:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2297 HTTP/1.1" 404 None +2025-03-06 11:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/324 HTTP/1.1" 200 None +2025-03-06 11:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/324?force=True HTTP/1.1" 200 None +2025-03-06 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/323?force=True HTTP/1.1" 200 None +2025-03-06 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2324?force=true HTTP/1.1" 200 None +2025-03-06 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2323?force=true HTTP/1.1" 200 None +2025-03-06 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2322?force=true HTTP/1.1" 200 None +2025-03-06 11:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2321?force=true HTTP/1.1" 200 None +2025-03-06 11:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2320?force=true HTTP/1.1" 200 None +2025-03-06 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2319?force=true HTTP/1.1" 200 None +2025-03-06 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2318?force=true HTTP/1.1" 200 None +2025-03-06 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2317?force=true HTTP/1.1" 200 None +2025-03-06 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2316?force=true HTTP/1.1" 200 None +2025-03-06 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2315?force=true HTTP/1.1" 200 None +2025-03-06 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2314?force=true HTTP/1.1" 200 None +2025-03-06 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2313?force=true HTTP/1.1" 200 None +2025-03-06 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2312?force=true HTTP/1.1" 200 None +2025-03-06 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2311?force=true HTTP/1.1" 200 None +2025-03-06 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2325 HTTP/1.1" 200 None +2025-03-06 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2326 HTTP/1.1" 200 None +2025-03-06 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2327 HTTP/1.1" 200 None +2025-03-06 11:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2328 HTTP/1.1" 200 None +2025-03-06 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2329 HTTP/1.1" 200 None +2025-03-06 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2330 HTTP/1.1" 200 None +2025-03-06 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2331 HTTP/1.1" 200 None +2025-03-06 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2332 HTTP/1.1" 200 None +2025-03-06 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2333 HTTP/1.1" 200 None +2025-03-06 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2334 HTTP/1.1" 200 None +2025-03-06 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2335 HTTP/1.1" 200 None +2025-03-06 11:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2336 HTTP/1.1" 200 None +2025-03-06 11:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2337 HTTP/1.1" 200 None +2025-03-06 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2338 HTTP/1.1" 200 None +2025-03-06 11:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2326 HTTP/1.1" 200 None +2025-03-06 11:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/325 HTTP/1.1" 200 None +2025-03-06 11:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/326 HTTP/1.1" 200 None +2025-03-06 11:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2325 HTTP/1.1" 200 None +2025-03-06 11:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/326 HTTP/1.1" 200 None +2025-03-06 11:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2338?force=true HTTP/1.1" 200 None +2025-03-06 11:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2337?force=true HTTP/1.1" 200 None +2025-03-06 11:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2336?force=true HTTP/1.1" 200 None +2025-03-06 11:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2335?force=true HTTP/1.1" 200 None +2025-03-06 11:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2334?force=true HTTP/1.1" 200 None +2025-03-06 11:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2333?force=true HTTP/1.1" 200 None +2025-03-06 11:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2332?force=true HTTP/1.1" 200 None +2025-03-06 11:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2331?force=true HTTP/1.1" 200 None +2025-03-06 11:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2330?force=true HTTP/1.1" 200 None +2025-03-06 11:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2329?force=true HTTP/1.1" 200 None +2025-03-06 11:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2328?force=true HTTP/1.1" 200 None +2025-03-06 11:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2327?force=true HTTP/1.1" 200 None +2025-03-06 11:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2326?force=true HTTP/1.1" 200 None +2025-03-06 11:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2325?force=true HTTP/1.1" 200 None +2025-03-06 11:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/326?force=True HTTP/1.1" 200 None +2025-03-06 11:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/325?force=True HTTP/1.1" 200 None +2025-03-06 11:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2339 HTTP/1.1" 200 None +2025-03-06 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2340 HTTP/1.1" 200 None +2025-03-06 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2341 HTTP/1.1" 200 None +2025-03-06 11:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2342 HTTP/1.1" 200 None +2025-03-06 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2343 HTTP/1.1" 200 None +2025-03-06 11:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2344 HTTP/1.1" 200 None +2025-03-06 11:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2345 HTTP/1.1" 200 None +2025-03-06 11:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2346 HTTP/1.1" 200 None +2025-03-06 11:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2347 HTTP/1.1" 200 None +2025-03-06 11:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2348 HTTP/1.1" 200 None +2025-03-06 11:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2349 HTTP/1.1" 200 None +2025-03-06 11:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2350 HTTP/1.1" 200 None +2025-03-06 11:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2351 HTTP/1.1" 200 None +2025-03-06 11:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2352 HTTP/1.1" 200 None +2025-03-06 11:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2326 HTTP/1.1" 404 None +2025-03-06 11:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/327 HTTP/1.1" 200 None +2025-03-06 11:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/328 HTTP/1.1" 200 None +2025-03-06 11:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2325 HTTP/1.1" 404 None +2025-03-06 11:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/328 HTTP/1.1" 200 None +2025-03-06 11:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 400 None +2025-03-06 11:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:46:32 - INFO - create_for_product(product_id=2354, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:32 - INFO - create_for_product(product_id=2354, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:33 - INFO - create_for_product(product_id=2354, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:34 - INFO - create_for_product(product_id=2354, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:34 - INFO - create_for_product(product_id=2354, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:35 - INFO - create_for_product(product_id=2354, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:35 - INFO - create_for_product(product_id=2353, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:36 - INFO - create_for_product(product_id=2353, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:37 - INFO - create_for_product(product_id=2353, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:38 - INFO - create_for_product(product_id=2353, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:38 - INFO - create_for_product(product_id=2353, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:38 - INFO - create_for_product(product_id=2353, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2354 HTTP/1.1" 200 None +2025-03-06 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2354 HTTP/1.1" 400 None +2025-03-06 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2353 HTTP/1.1" 200 None +2025-03-06 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2353 HTTP/1.1" 400 None +2025-03-06 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2352?force=true HTTP/1.1" 200 None +2025-03-06 11:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2351?force=true HTTP/1.1" 200 None +2025-03-06 11:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2350?force=true HTTP/1.1" 200 None +2025-03-06 11:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2349?force=true HTTP/1.1" 200 None +2025-03-06 11:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2348?force=true HTTP/1.1" 200 None +2025-03-06 11:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2347?force=true HTTP/1.1" 200 None +2025-03-06 11:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2346?force=true HTTP/1.1" 200 None +2025-03-06 11:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2345?force=true HTTP/1.1" 200 None +2025-03-06 11:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2344?force=true HTTP/1.1" 200 None +2025-03-06 11:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2343?force=true HTTP/1.1" 200 None +2025-03-06 11:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2342?force=true HTTP/1.1" 200 None +2025-03-06 11:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2341?force=true HTTP/1.1" 200 None +2025-03-06 11:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2340?force=true HTTP/1.1" 200 None +2025-03-06 11:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2339?force=true HTTP/1.1" 200 None +2025-03-06 11:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2354?force=True HTTP/1.1" 200 None +2025-03-06 11:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2353?force=True HTTP/1.1" 200 None +2025-03-06 11:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/328?force=True HTTP/1.1" 200 None +2025-03-06 11:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/327?force=True HTTP/1.1" 200 None +2025-03-06 11:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2355 HTTP/1.1" 200 None +2025-03-06 11:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2356 HTTP/1.1" 200 None +2025-03-06 11:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2357 HTTP/1.1" 200 None +2025-03-06 11:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2358 HTTP/1.1" 200 None +2025-03-06 11:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2359 HTTP/1.1" 200 None +2025-03-06 11:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2360 HTTP/1.1" 200 None +2025-03-06 11:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2361 HTTP/1.1" 200 None +2025-03-06 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2362 HTTP/1.1" 200 None +2025-03-06 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2363 HTTP/1.1" 200 None +2025-03-06 11:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2364 HTTP/1.1" 200 None +2025-03-06 11:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2365 HTTP/1.1" 200 None +2025-03-06 11:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2366 HTTP/1.1" 200 None +2025-03-06 11:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2367 HTTP/1.1" 200 None +2025-03-06 11:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2368 HTTP/1.1" 200 None +2025-03-06 11:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2340 HTTP/1.1" 404 None +2025-03-06 11:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/329 HTTP/1.1" 200 None +2025-03-06 11:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/330 HTTP/1.1" 200 None +2025-03-06 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2339 HTTP/1.1" 404 None +2025-03-06 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/330 HTTP/1.1" 200 None +2025-03-06 11:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2369 HTTP/1.1" 400 None +2025-03-06 11:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2370 HTTP/1.1" 400 None +2025-03-06 11:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:49:06 - INFO - create_for_product(product_id=2370, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:06 - INFO - create_for_product(product_id=2370, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:07 - INFO - create_for_product(product_id=2370, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:08 - INFO - create_for_product(product_id=2370, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:09 - INFO - create_for_product(product_id=2370, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:09 - INFO - create_for_product(product_id=2370, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:10 - INFO - create_for_product(product_id=2369, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:10 - INFO - create_for_product(product_id=2369, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:11 - INFO - create_for_product(product_id=2369, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:12 - INFO - create_for_product(product_id=2369, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:13 - INFO - create_for_product(product_id=2369, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:13 - INFO - create_for_product(product_id=2369, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2369 HTTP/1.1" 200 None +2025-03-06 11:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2370 HTTP/1.1" 200 None +2025-03-06 11:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2368?force=true HTTP/1.1" 200 None +2025-03-06 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2367?force=true HTTP/1.1" 200 None +2025-03-06 11:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2366?force=true HTTP/1.1" 200 None +2025-03-06 11:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2365?force=true HTTP/1.1" 200 None +2025-03-06 11:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2364?force=true HTTP/1.1" 200 None +2025-03-06 11:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2363?force=true HTTP/1.1" 200 None +2025-03-06 11:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2362?force=true HTTP/1.1" 200 None +2025-03-06 11:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2361?force=true HTTP/1.1" 200 None +2025-03-06 11:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2360?force=true HTTP/1.1" 200 None +2025-03-06 11:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2359?force=true HTTP/1.1" 200 None +2025-03-06 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2358?force=true HTTP/1.1" 200 None +2025-03-06 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2357?force=true HTTP/1.1" 200 None +2025-03-06 11:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2356?force=true HTTP/1.1" 200 None +2025-03-06 11:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2355?force=true HTTP/1.1" 200 None +2025-03-06 11:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2370?force=True HTTP/1.1" 200 None +2025-03-06 11:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2369?force=True HTTP/1.1" 200 None +2025-03-06 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/330?force=True HTTP/1.1" 200 None +2025-03-06 11:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/329?force=True HTTP/1.1" 200 None +2025-03-06 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2371 HTTP/1.1" 200 None +2025-03-06 11:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2372 HTTP/1.1" 200 None +2025-03-06 11:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2373 HTTP/1.1" 200 None +2025-03-06 11:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2374 HTTP/1.1" 200 None +2025-03-06 11:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2375 HTTP/1.1" 200 None +2025-03-06 11:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2376 HTTP/1.1" 200 None +2025-03-06 11:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2377 HTTP/1.1" 200 None +2025-03-06 11:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2378 HTTP/1.1" 200 None +2025-03-06 11:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2379 HTTP/1.1" 200 None +2025-03-06 11:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2380 HTTP/1.1" 200 None +2025-03-06 11:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2381 HTTP/1.1" 200 None +2025-03-06 11:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2382 HTTP/1.1" 200 None +2025-03-06 11:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2383 HTTP/1.1" 200 None +2025-03-06 11:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2384 HTTP/1.1" 200 None +2025-03-06 11:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-06 11:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/331 HTTP/1.1" 400 None +2025-03-06 11:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/332 HTTP/1.1" 200 None +2025-03-06 11:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-06 11:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/332 HTTP/1.1" 400 None +2025-03-06 11:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:52:32 - INFO - create_for_product(product_id=2386, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:32 - INFO - create_for_product(product_id=2386, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:33 - INFO - create_for_product(product_id=2386, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:34 - INFO - create_for_product(product_id=2386, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:34 - INFO - create_for_product(product_id=2386, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:35 - INFO - create_for_product(product_id=2386, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:35 - INFO - create_for_product(product_id=2385, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:36 - INFO - create_for_product(product_id=2385, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:37 - INFO - create_for_product(product_id=2385, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:38 - INFO - create_for_product(product_id=2385, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:38 - INFO - create_for_product(product_id=2385, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:38 - INFO - create_for_product(product_id=2385, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 400 None +2025-03-06 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 400 None +2025-03-06 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 400 None +2025-03-06 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 400 None +2025-03-06 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 400 None +2025-03-06 11:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2386 HTTP/1.1" 200 None +2025-03-06 11:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2386 HTTP/1.1" 400 None +2025-03-06 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 400 None +2025-03-06 11:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 400 None +2025-03-06 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 400 None +2025-03-06 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 400 None +2025-03-06 11:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 400 None +2025-03-06 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2385 HTTP/1.1" 200 None +2025-03-06 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2385 HTTP/1.1" 400 None +2025-03-06 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2384?force=true HTTP/1.1" 200 None +2025-03-06 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2383?force=true HTTP/1.1" 200 None +2025-03-06 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2382?force=true HTTP/1.1" 200 None +2025-03-06 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2381?force=true HTTP/1.1" 200 None +2025-03-06 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2380?force=true HTTP/1.1" 200 None +2025-03-06 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2379?force=true HTTP/1.1" 200 None +2025-03-06 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2378?force=true HTTP/1.1" 200 None +2025-03-06 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2377?force=true HTTP/1.1" 200 None +2025-03-06 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2376?force=true HTTP/1.1" 200 None +2025-03-06 11:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2375?force=true HTTP/1.1" 200 None +2025-03-06 11:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2374?force=true HTTP/1.1" 200 None +2025-03-06 11:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2373?force=true HTTP/1.1" 200 None +2025-03-06 11:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2372?force=true HTTP/1.1" 200 None +2025-03-06 11:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2371?force=true HTTP/1.1" 200 None +2025-03-06 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2386?force=True HTTP/1.1" 200 None +2025-03-06 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2385?force=True HTTP/1.1" 200 None +2025-03-06 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/332?force=True HTTP/1.1" 200 None +2025-03-06 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/331?force=True HTTP/1.1" 200 None +2025-03-06 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2387 HTTP/1.1" 200 None +2025-03-06 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2388 HTTP/1.1" 200 None +2025-03-06 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2389 HTTP/1.1" 200 None +2025-03-06 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2390 HTTP/1.1" 200 None +2025-03-06 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2391 HTTP/1.1" 200 None +2025-03-06 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2392 HTTP/1.1" 200 None +2025-03-06 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2393 HTTP/1.1" 200 None +2025-03-06 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2394 HTTP/1.1" 200 None +2025-03-06 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2395 HTTP/1.1" 200 None +2025-03-06 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2396 HTTP/1.1" 200 None +2025-03-06 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2397 HTTP/1.1" 200 None +2025-03-06 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2398 HTTP/1.1" 200 None +2025-03-06 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2399 HTTP/1.1" 200 None +2025-03-06 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2400 HTTP/1.1" 200 None +2025-03-06 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2372 HTTP/1.1" 404 None +2025-03-06 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/333 HTTP/1.1" 200 None +2025-03-06 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/334 HTTP/1.1" 200 None +2025-03-06 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2371 HTTP/1.1" 404 None +2025-03-06 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/334 HTTP/1.1" 200 None +2025-03-06 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:55:10 - INFO - create_for_product(product_id=2402, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:11 - INFO - create_for_product(product_id=2402, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:11 - INFO - create_for_product(product_id=2402, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:12 - INFO - create_for_product(product_id=2402, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:13 - INFO - create_for_product(product_id=2402, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:13 - INFO - create_for_product(product_id=2402, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:13 - INFO - create_for_product(product_id=2401, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:14 - INFO - create_for_product(product_id=2401, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:15 - INFO - create_for_product(product_id=2401, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:16 - INFO - create_for_product(product_id=2401, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:16 - INFO - create_for_product(product_id=2401, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:16 - INFO - create_for_product(product_id=2401, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2402 HTTP/1.1" 200 None +2025-03-06 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2402 HTTP/1.1" 400 None +2025-03-06 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2401 HTTP/1.1" 200 None +2025-03-06 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2401 HTTP/1.1" 400 None +2025-03-06 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2400?force=true HTTP/1.1" 200 None +2025-03-06 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2399?force=true HTTP/1.1" 200 None +2025-03-06 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2398?force=true HTTP/1.1" 200 None +2025-03-06 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2397?force=true HTTP/1.1" 200 None +2025-03-06 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2396?force=true HTTP/1.1" 200 None +2025-03-06 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2395?force=true HTTP/1.1" 200 None +2025-03-06 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2394?force=true HTTP/1.1" 200 None +2025-03-06 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2393?force=true HTTP/1.1" 200 None +2025-03-06 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2392?force=true HTTP/1.1" 200 None +2025-03-06 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2391?force=true HTTP/1.1" 200 None +2025-03-06 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2390?force=true HTTP/1.1" 200 None +2025-03-06 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2389?force=true HTTP/1.1" 200 None +2025-03-06 11:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2388?force=true HTTP/1.1" 200 None +2025-03-06 11:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2402?force=True HTTP/1.1" 200 None +2025-03-06 11:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2401?force=True HTTP/1.1" 200 None +2025-03-06 11:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/334?force=True HTTP/1.1" 200 None +2025-03-06 11:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/333?force=True HTTP/1.1" 200 None +2025-03-06 11:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2403 HTTP/1.1" 200 None +2025-03-06 11:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2404 HTTP/1.1" 200 None +2025-03-06 11:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2405 HTTP/1.1" 200 None +2025-03-06 11:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2406 HTTP/1.1" 200 None +2025-03-06 11:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2407 HTTP/1.1" 200 None +2025-03-06 11:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2408 HTTP/1.1" 200 None +2025-03-06 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2409 HTTP/1.1" 200 None +2025-03-06 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2410 HTTP/1.1" 200 None +2025-03-06 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2411 HTTP/1.1" 200 None +2025-03-06 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2412 HTTP/1.1" 200 None +2025-03-06 11:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2413 HTTP/1.1" 200 None +2025-03-06 11:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2414 HTTP/1.1" 200 None +2025-03-06 11:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2415 HTTP/1.1" 200 None +2025-03-06 11:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 11:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2416 HTTP/1.1" 200 None +2025-03-06 11:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2416?force=true HTTP/1.1" 200 None +2025-03-06 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2415?force=true HTTP/1.1" 200 None +2025-03-06 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2414?force=true HTTP/1.1" 200 None +2025-03-06 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2413?force=true HTTP/1.1" 200 None +2025-03-06 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2412?force=true HTTP/1.1" 200 None +2025-03-06 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2411?force=true HTTP/1.1" 200 None +2025-03-06 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2410?force=true HTTP/1.1" 200 None +2025-03-06 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2409?force=true HTTP/1.1" 200 None +2025-03-06 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2408?force=true HTTP/1.1" 200 None +2025-03-06 11:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2407?force=true HTTP/1.1" 200 None +2025-03-06 11:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2406?force=true HTTP/1.1" 200 None +2025-03-06 11:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2405?force=true HTTP/1.1" 200 None +2025-03-06 11:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2404?force=true HTTP/1.1" 200 None +2025-03-06 11:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2403?force=true HTTP/1.1" 200 None +2025-03-06 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2404 HTTP/1.1" 404 None +2025-03-06 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/335 HTTP/1.1" 200 None +2025-03-06 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/336 HTTP/1.1" 200 None +2025-03-06 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2403 HTTP/1.1" 404 None +2025-03-06 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/336 HTTP/1.1" 200 None +2025-03-06 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2417 HTTP/1.1" 400 None +2025-03-06 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 400 None +2025-03-06 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:58:01 - INFO - create_for_product(product_id=2418, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:02 - INFO - create_for_product(product_id=2418, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:03 - INFO - create_for_product(product_id=2418, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:04 - INFO - create_for_product(product_id=2418, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:04 - INFO - create_for_product(product_id=2418, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:05 - INFO - create_for_product(product_id=2418, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:05 - INFO - create_for_product(product_id=2417, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:06 - INFO - create_for_product(product_id=2417, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 11:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:07 - INFO - create_for_product(product_id=2417, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:07 - INFO - create_for_product(product_id=2417, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:08 - INFO - create_for_product(product_id=2417, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:08 - INFO - create_for_product(product_id=2417, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2417 HTTP/1.1" 200 None +2025-03-06 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 11:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 11:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 400 None +2025-03-06 11:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 400 None +2025-03-06 11:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2418 HTTP/1.1" 200 None +2025-03-06 11:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 11:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2418 HTTP/1.1" 400 None +2025-03-06 11:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 12:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2418?force=True HTTP/1.1" 200 None +2025-03-06 12:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2417?force=True HTTP/1.1" 200 None +2025-03-06 12:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 12:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/336?force=True HTTP/1.1" 200 None +2025-03-06 12:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/335?force=True HTTP/1.1" 200 None +2025-03-06 12:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2419 HTTP/1.1" 200 None +2025-03-06 12:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2420 HTTP/1.1" 200 None +2025-03-06 12:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2421 HTTP/1.1" 200 None +2025-03-06 12:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2422 HTTP/1.1" 200 None +2025-03-06 12:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2423 HTTP/1.1" 200 None +2025-03-06 12:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2424 HTTP/1.1" 200 None +2025-03-06 12:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2425 HTTP/1.1" 200 None +2025-03-06 12:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2426 HTTP/1.1" 200 None +2025-03-06 12:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2427 HTTP/1.1" 200 None +2025-03-06 12:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2428 HTTP/1.1" 200 None +2025-03-06 12:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2429 HTTP/1.1" 200 None +2025-03-06 12:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2430 HTTP/1.1" 200 None +2025-03-06 12:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2431 HTTP/1.1" 200 None +2025-03-06 12:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2432 HTTP/1.1" 200 None +2025-03-06 12:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 12:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2420 HTTP/1.1" 200 None +2025-03-06 12:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/337 HTTP/1.1" 200 None +2025-03-06 12:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 12:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/338 HTTP/1.1" 200 None +2025-03-06 12:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2419 HTTP/1.1" 200 None +2025-03-06 12:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/338 HTTP/1.1" 200 None +2025-03-06 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2433 HTTP/1.1" 200 None +2025-03-06 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2434 HTTP/1.1" 200 None +2025-03-06 12:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2432?force=true HTTP/1.1" 200 None +2025-03-06 12:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2431?force=true HTTP/1.1" 200 None +2025-03-06 12:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2430?force=true HTTP/1.1" 200 None +2025-03-06 12:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2429?force=true HTTP/1.1" 200 None +2025-03-06 12:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2428?force=true HTTP/1.1" 200 None +2025-03-06 12:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2427?force=true HTTP/1.1" 200 None +2025-03-06 12:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2426?force=true HTTP/1.1" 200 None +2025-03-06 12:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2425?force=true HTTP/1.1" 200 None +2025-03-06 12:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2424?force=true HTTP/1.1" 200 None +2025-03-06 12:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2423?force=true HTTP/1.1" 200 None +2025-03-06 12:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2422?force=true HTTP/1.1" 200 None +2025-03-06 12:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2421?force=true HTTP/1.1" 200 None +2025-03-06 12:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2420?force=true HTTP/1.1" 200 None +2025-03-06 12:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2419?force=true HTTP/1.1" 200 None +2025-03-06 12:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 12:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2434?force=True HTTP/1.1" 200 None +2025-03-06 12:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2433?force=True HTTP/1.1" 200 None +2025-03-06 12:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 12:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/338?force=True HTTP/1.1" 200 None +2025-03-06 12:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/337?force=True HTTP/1.1" 200 None +2025-03-06 12:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2435 HTTP/1.1" 200 None +2025-03-06 12:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2436 HTTP/1.1" 200 None +2025-03-06 12:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2437 HTTP/1.1" 200 None +2025-03-06 12:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2438 HTTP/1.1" 200 None +2025-03-06 12:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2439 HTTP/1.1" 200 None +2025-03-06 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2440 HTTP/1.1" 200 None +2025-03-06 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2441 HTTP/1.1" 200 None +2025-03-06 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2442 HTTP/1.1" 200 None +2025-03-06 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2443 HTTP/1.1" 200 None +2025-03-06 12:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2444 HTTP/1.1" 200 None +2025-03-06 12:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2445 HTTP/1.1" 200 None +2025-03-06 12:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2446 HTTP/1.1" 200 None +2025-03-06 12:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2447 HTTP/1.1" 200 None +2025-03-06 12:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 12:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2448 HTTP/1.1" 200 None +2025-03-06 12:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 12:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 12:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2436 HTTP/1.1" 200 None +2025-03-06 12:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/339 HTTP/1.1" 200 None +2025-03-06 12:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 12:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/340 HTTP/1.1" 200 None +2025-03-06 12:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2435 HTTP/1.1" 200 None +2025-03-06 12:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/340 HTTP/1.1" 200 None +2025-03-06 12:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 12:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 12:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 12:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 12:20:40 - INFO - create_for_product(product_id=2450, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 12:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:41 - INFO - create_for_product(product_id=2450, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 12:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:41 - INFO - create_for_product(product_id=2450, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 12:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:42 - INFO - create_for_product(product_id=2450, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 12:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:43 - INFO - create_for_product(product_id=2450, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 12:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:43 - INFO - create_for_product(product_id=2450, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 12:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:43 - INFO - create_for_product(product_id=2449, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 12:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:44 - INFO - create_for_product(product_id=2449, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 12:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:45 - INFO - create_for_product(product_id=2449, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 12:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:46 - INFO - create_for_product(product_id=2449, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 12:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:46 - INFO - create_for_product(product_id=2449, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 12:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:47 - INFO - create_for_product(product_id=2449, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 12:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 12:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 12:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 400 None +2025-03-06 12:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 400 None +2025-03-06 12:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 400 None +2025-03-06 12:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 400 None +2025-03-06 12:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 400 None +2025-03-06 12:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2450 HTTP/1.1" 200 None +2025-03-06 12:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2450 HTTP/1.1" 400 None +2025-03-06 12:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 400 None +2025-03-06 12:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 400 None +2025-03-06 12:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 400 None +2025-03-06 12:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 400 None +2025-03-06 12:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 400 None +2025-03-06 12:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2449 HTTP/1.1" 200 None +2025-03-06 12:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 12:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2449 HTTP/1.1" 400 None +2025-03-06 14:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2448?force=true HTTP/1.1" 200 None +2025-03-06 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2447?force=true HTTP/1.1" 200 None +2025-03-06 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2446?force=true HTTP/1.1" 200 None +2025-03-06 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2445?force=true HTTP/1.1" 200 None +2025-03-06 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2444?force=true HTTP/1.1" 200 None +2025-03-06 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2443?force=true HTTP/1.1" 200 None +2025-03-06 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2442?force=true HTTP/1.1" 200 None +2025-03-06 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2441?force=true HTTP/1.1" 200 None +2025-03-06 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2440?force=true HTTP/1.1" 200 None +2025-03-06 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2439?force=true HTTP/1.1" 200 None +2025-03-06 14:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2438?force=true HTTP/1.1" 200 None +2025-03-06 14:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2437?force=true HTTP/1.1" 200 None +2025-03-06 14:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2436?force=true HTTP/1.1" 200 None +2025-03-06 14:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2435?force=true HTTP/1.1" 200 None +2025-03-06 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/18?force=True HTTP/1.1" 200 None +2025-03-06 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/16?force=True HTTP/1.1" 200 None +2025-03-06 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/20?force=True HTTP/1.1" 200 None +2025-03-06 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/15?force=True HTTP/1.1" 200 None +2025-03-06 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/17?force=True HTTP/1.1" 200 None +2025-03-06 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/19?force=True HTTP/1.1" 200 None +2025-03-06 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 14:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2450?force=True HTTP/1.1" 200 None +2025-03-06 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2449?force=True HTTP/1.1" 200 None +2025-03-06 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/340?force=True HTTP/1.1" 200 None +2025-03-06 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/339?force=True HTTP/1.1" 200 None +2025-03-06 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2451 HTTP/1.1" 200 None +2025-03-06 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2452 HTTP/1.1" 200 None +2025-03-06 14:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2453 HTTP/1.1" 200 None +2025-03-06 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2454 HTTP/1.1" 200 None +2025-03-06 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2455 HTTP/1.1" 200 None +2025-03-06 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2456 HTTP/1.1" 200 None +2025-03-06 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2457 HTTP/1.1" 200 None +2025-03-06 14:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2458 HTTP/1.1" 200 None +2025-03-06 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2459?force=true HTTP/1.1" 200 None +2025-03-06 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2458?force=true HTTP/1.1" 200 None +2025-03-06 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2457?force=true HTTP/1.1" 200 None +2025-03-06 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2456?force=true HTTP/1.1" 200 None +2025-03-06 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2455?force=true HTTP/1.1" 200 None +2025-03-06 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2454?force=true HTTP/1.1" 200 None +2025-03-06 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2453?force=true HTTP/1.1" 200 None +2025-03-06 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2452?force=true HTTP/1.1" 200 None +2025-03-06 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2451?force=true HTTP/1.1" 200 None +2025-03-06 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-06 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2460 HTTP/1.1" 200 None +2025-03-06 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2461 HTTP/1.1" 200 None +2025-03-06 14:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2462 HTTP/1.1" 200 None +2025-03-06 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2463 HTTP/1.1" 200 None +2025-03-06 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2464 HTTP/1.1" 200 None +2025-03-06 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2465 HTTP/1.1" 200 None +2025-03-06 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2466 HTTP/1.1" 200 None +2025-03-06 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2467 HTTP/1.1" 200 None +2025-03-06 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2468 HTTP/1.1" 200 None +2025-03-06 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2469 HTTP/1.1" 200 None +2025-03-06 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2470 HTTP/1.1" 200 None +2025-03-06 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2471 HTTP/1.1" 200 None +2025-03-06 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2472 HTTP/1.1" 200 None +2025-03-06 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-06 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2473 HTTP/1.1" 200 None +2025-03-06 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-06 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2461 HTTP/1.1" 200 None +2025-03-06 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/341 HTTP/1.1" 200 None +2025-03-06 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-06 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/342 HTTP/1.1" 200 None +2025-03-06 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/2460 HTTP/1.1" 200 None +2025-03-06 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/342 HTTP/1.1" 200 None +2025-03-06 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-06 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-06 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-06 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-06 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-06 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-06 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/24/terms HTTP/1.1" 201 None +2025-03-06 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/22/terms HTTP/1.1" 201 None +2025-03-06 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/26/terms HTTP/1.1" 201 None +2025-03-06 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/26/terms HTTP/1.1" 201 None +2025-03-06 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/26/terms HTTP/1.1" 201 None +2025-03-06 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/26/terms HTTP/1.1" 400 None +2025-03-06 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/21/terms HTTP/1.1" 201 None +2025-03-06 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/23/terms HTTP/1.1" 201 None +2025-03-06 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/25/terms HTTP/1.1" 201 None +2025-03-06 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-06 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-06 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 14:27:43 - INFO - create_for_product(product_id=2475, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-06 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:43 - INFO - create_for_product(product_id=2475, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-06 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:44 - INFO - create_for_product(product_id=2475, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-06 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:45 - INFO - create_for_product(product_id=2475, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-06 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:45 - INFO - create_for_product(product_id=2475, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-06 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:46 - INFO - create_for_product(product_id=2475, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-06 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:46 - INFO - create_for_product(product_id=2474, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-06 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:47 - INFO - create_for_product(product_id=2474, title=Description, content=La Chope au parfum , nickname=, position=8, tab_type=local) called +2025-03-06 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:48 - INFO - create_for_product(product_id=2474, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-06 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:48 - INFO - create_for_product(product_id=2474, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-06 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:49 - INFO - create_for_product(product_id=2474, title=Description, content=La bougie Chope au p, nickname=, position=11, tab_type=local) called +2025-03-06 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:49 - INFO - create_for_product(product_id=2474, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-06 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-06 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-06 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 400 None +2025-03-06 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 400 None +2025-03-06 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 400 None +2025-03-06 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 400 None +2025-03-06 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 400 None +2025-03-06 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2475 HTTP/1.1" 200 None +2025-03-06 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2475 HTTP/1.1" 400 None +2025-03-06 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 400 None +2025-03-06 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 400 None +2025-03-06 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 400 None +2025-03-06 14:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 400 None +2025-03-06 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 400 None +2025-03-06 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/2474 HTTP/1.1" 200 None +2025-03-06 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-06 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/2474 HTTP/1.1" 400 None +2025-03-07 15:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2473?force=true HTTP/1.1" 200 None +2025-03-07 15:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2472?force=true HTTP/1.1" 200 None +2025-03-07 15:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2471?force=true HTTP/1.1" 200 None +2025-03-07 15:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2470?force=true HTTP/1.1" 200 None +2025-03-07 15:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2469?force=true HTTP/1.1" 200 None +2025-03-07 15:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2468?force=true HTTP/1.1" 200 None +2025-03-07 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2467?force=true HTTP/1.1" 200 None +2025-03-07 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2466?force=true HTTP/1.1" 200 None +2025-03-07 15:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2465?force=true HTTP/1.1" 200 None +2025-03-07 15:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2464?force=true HTTP/1.1" 200 None +2025-03-07 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2463?force=true HTTP/1.1" 200 None +2025-03-07 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2462?force=true HTTP/1.1" 200 None +2025-03-07 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2461?force=true HTTP/1.1" 200 None +2025-03-07 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2460?force=true HTTP/1.1" 200 None +2025-03-07 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/24?force=True HTTP/1.1" 200 None +2025-03-07 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/22?force=True HTTP/1.1" 200 None +2025-03-07 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/26?force=True HTTP/1.1" 200 None +2025-03-07 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/21?force=True HTTP/1.1" 200 None +2025-03-07 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/23?force=True HTTP/1.1" 200 None +2025-03-07 15:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/25?force=True HTTP/1.1" 200 None +2025-03-07 15:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2475?force=True HTTP/1.1" 200 None +2025-03-07 15:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/2474?force=True HTTP/1.1" 200 None +2025-03-07 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/342?force=True HTTP/1.1" 200 None +2025-03-07 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/341?force=True HTTP/1.1" 200 None +2025-03-07 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2476 HTTP/1.1" 200 None +2025-03-07 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2477 HTTP/1.1" 200 None +2025-03-07 15:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2478 HTTP/1.1" 200 None +2025-03-07 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2479 HTTP/1.1" 200 None +2025-03-07 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2480 HTTP/1.1" 200 None +2025-03-07 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2481 HTTP/1.1" 200 None +2025-03-07 15:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2482 HTTP/1.1" 200 None +2025-03-07 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2483 HTTP/1.1" 200 None +2025-03-07 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2484 HTTP/1.1" 200 None +2025-03-07 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2485 HTTP/1.1" 200 None +2025-03-07 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2486 HTTP/1.1" 200 None +2025-03-07 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2487 HTTP/1.1" 200 None +2025-03-07 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2488 HTTP/1.1" 200 None +2025-03-07 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2489 HTTP/1.1" 200 None +2025-03-07 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2490 HTTP/1.1" 200 None +2025-03-07 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2491 HTTP/1.1" 200 None +2025-03-07 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2492 HTTP/1.1" 200 None +2025-03-07 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2493 HTTP/1.1" 200 None +2025-03-07 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2494 HTTP/1.1" 200 None +2025-03-07 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2495 HTTP/1.1" 200 None +2025-03-07 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2496 HTTP/1.1" 200 None +2025-03-07 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2497 HTTP/1.1" 200 None +2025-03-07 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2498 HTTP/1.1" 200 None +2025-03-07 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2499 HTTP/1.1" 200 None +2025-03-07 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2500 HTTP/1.1" 200 None +2025-03-07 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2501 HTTP/1.1" 200 None +2025-03-07 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2502 HTTP/1.1" 200 None +2025-03-07 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2502?force=true HTTP/1.1" 200 None +2025-03-07 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2501?force=true HTTP/1.1" 200 None +2025-03-07 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2500?force=true HTTP/1.1" 200 None +2025-03-07 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2499?force=true HTTP/1.1" 200 None +2025-03-07 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2498?force=true HTTP/1.1" 200 None +2025-03-07 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2497?force=true HTTP/1.1" 200 None +2025-03-07 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2496?force=true HTTP/1.1" 200 None +2025-03-07 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2495?force=true HTTP/1.1" 200 None +2025-03-07 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2494?force=true HTTP/1.1" 200 None +2025-03-07 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2493?force=true HTTP/1.1" 200 None +2025-03-07 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2492?force=true HTTP/1.1" 200 None +2025-03-07 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2491?force=true HTTP/1.1" 200 None +2025-03-07 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2490?force=true HTTP/1.1" 200 None +2025-03-07 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2489?force=true HTTP/1.1" 200 None +2025-03-07 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2488?force=true HTTP/1.1" 200 None +2025-03-07 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2487?force=true HTTP/1.1" 200 None +2025-03-07 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2486?force=true HTTP/1.1" 200 None +2025-03-07 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2485?force=true HTTP/1.1" 200 None +2025-03-07 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2484?force=true HTTP/1.1" 200 None +2025-03-07 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2483?force=true HTTP/1.1" 200 None +2025-03-07 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2482?force=true HTTP/1.1" 200 None +2025-03-07 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2481?force=true HTTP/1.1" 200 None +2025-03-07 15:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2480?force=true HTTP/1.1" 200 None +2025-03-07 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2479?force=true HTTP/1.1" 200 None +2025-03-07 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2478?force=true HTTP/1.1" 200 None +2025-03-07 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2477?force=true HTTP/1.1" 200 None +2025-03-07 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2476?force=true HTTP/1.1" 200 None +2025-03-07 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2503 HTTP/1.1" 200 None +2025-03-07 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2504 HTTP/1.1" 200 None +2025-03-07 15:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2505 HTTP/1.1" 200 None +2025-03-07 15:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2506 HTTP/1.1" 200 None +2025-03-07 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2507 HTTP/1.1" 200 None +2025-03-07 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2508 HTTP/1.1" 200 None +2025-03-07 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2509 HTTP/1.1" 200 None +2025-03-07 15:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2510 HTTP/1.1" 200 None +2025-03-07 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2511 HTTP/1.1" 200 None +2025-03-07 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2512 HTTP/1.1" 200 None +2025-03-07 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2513 HTTP/1.1" 200 None +2025-03-07 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2514 HTTP/1.1" 200 None +2025-03-07 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2515 HTTP/1.1" 200 None +2025-03-07 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2516 HTTP/1.1" 200 None +2025-03-07 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2517 HTTP/1.1" 200 None +2025-03-07 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2518 HTTP/1.1" 200 None +2025-03-07 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2519 HTTP/1.1" 200 None +2025-03-07 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2520 HTTP/1.1" 200 None +2025-03-07 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2521 HTTP/1.1" 200 None +2025-03-07 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2522 HTTP/1.1" 200 None +2025-03-07 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2523 HTTP/1.1" 200 None +2025-03-07 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2524 HTTP/1.1" 200 None +2025-03-07 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2525 HTTP/1.1" 200 None +2025-03-07 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2526 HTTP/1.1" 200 None +2025-03-07 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2527 HTTP/1.1" 200 None +2025-03-07 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2528 HTTP/1.1" 200 None +2025-03-07 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2529 HTTP/1.1" 200 None +2025-03-07 15:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2530 HTTP/1.1" 200 None +2025-03-07 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2530?force=true HTTP/1.1" 200 None +2025-03-07 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2529?force=true HTTP/1.1" 200 None +2025-03-07 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2528?force=true HTTP/1.1" 200 None +2025-03-07 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2527?force=true HTTP/1.1" 200 None +2025-03-07 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2526?force=true HTTP/1.1" 200 None +2025-03-07 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2525?force=true HTTP/1.1" 200 None +2025-03-07 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2524?force=true HTTP/1.1" 200 None +2025-03-07 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2523?force=true HTTP/1.1" 200 None +2025-03-07 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2522?force=true HTTP/1.1" 200 None +2025-03-07 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2521?force=true HTTP/1.1" 200 None +2025-03-07 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2520?force=true HTTP/1.1" 200 None +2025-03-07 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2519?force=true HTTP/1.1" 200 None +2025-03-07 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2518?force=true HTTP/1.1" 200 None +2025-03-07 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2517?force=true HTTP/1.1" 200 None +2025-03-07 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2516?force=true HTTP/1.1" 200 None +2025-03-07 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2515?force=true HTTP/1.1" 200 None +2025-03-07 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2514?force=true HTTP/1.1" 200 None +2025-03-07 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2513?force=true HTTP/1.1" 200 None +2025-03-07 15:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2512?force=true HTTP/1.1" 200 None +2025-03-07 15:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2511?force=true HTTP/1.1" 200 None +2025-03-07 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2510?force=true HTTP/1.1" 200 None +2025-03-07 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2509?force=true HTTP/1.1" 200 None +2025-03-07 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2508?force=true HTTP/1.1" 200 None +2025-03-07 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2507?force=true HTTP/1.1" 200 None +2025-03-07 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2506?force=true HTTP/1.1" 200 None +2025-03-07 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2505?force=true HTTP/1.1" 200 None +2025-03-07 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2504?force=true HTTP/1.1" 200 None +2025-03-07 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2503?force=true HTTP/1.1" 200 None +2025-03-07 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2531 HTTP/1.1" 200 None +2025-03-07 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2532 HTTP/1.1" 200 None +2025-03-07 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2533 HTTP/1.1" 200 None +2025-03-07 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2534 HTTP/1.1" 200 None +2025-03-07 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2535 HTTP/1.1" 200 None +2025-03-07 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2536 HTTP/1.1" 200 None +2025-03-07 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2537 HTTP/1.1" 200 None +2025-03-07 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2538 HTTP/1.1" 200 None +2025-03-07 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2539 HTTP/1.1" 200 None +2025-03-07 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2540 HTTP/1.1" 200 None +2025-03-07 15:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2541 HTTP/1.1" 200 None +2025-03-07 15:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2542 HTTP/1.1" 200 None +2025-03-07 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2543 HTTP/1.1" 200 None +2025-03-07 15:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2544 HTTP/1.1" 200 None +2025-03-07 15:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2545 HTTP/1.1" 200 None +2025-03-07 15:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2546 HTTP/1.1" 200 None +2025-03-07 15:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2547 HTTP/1.1" 200 None +2025-03-07 15:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2548 HTTP/1.1" 200 None +2025-03-07 15:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2549 HTTP/1.1" 200 None +2025-03-07 15:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2550 HTTP/1.1" 200 None +2025-03-07 15:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2551 HTTP/1.1" 200 None +2025-03-07 15:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2552 HTTP/1.1" 200 None +2025-03-07 15:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2553 HTTP/1.1" 200 None +2025-03-07 15:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2554 HTTP/1.1" 200 None +2025-03-07 15:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2555 HTTP/1.1" 200 None +2025-03-07 15:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2556 HTTP/1.1" 200 None +2025-03-07 15:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2557 HTTP/1.1" 200 None +2025-03-07 15:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2558 HTTP/1.1" 200 None +2025-03-07 15:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2559 HTTP/1.1" 200 None +2025-03-07 15:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2560 HTTP/1.1" 200 None +2025-03-07 15:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2561 HTTP/1.1" 200 None +2025-03-07 15:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 15:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 15:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2562 HTTP/1.1" 200 None +2025-03-07 15:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 15:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 15:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2562?force=true HTTP/1.1" 200 None +2025-03-07 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2561?force=true HTTP/1.1" 200 None +2025-03-07 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2560?force=true HTTP/1.1" 200 None +2025-03-07 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2559?force=true HTTP/1.1" 200 None +2025-03-07 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2558?force=true HTTP/1.1" 200 None +2025-03-07 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2557?force=true HTTP/1.1" 200 None +2025-03-07 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2556?force=true HTTP/1.1" 200 None +2025-03-07 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2555?force=true HTTP/1.1" 200 None +2025-03-07 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2554?force=true HTTP/1.1" 200 None +2025-03-07 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2553?force=true HTTP/1.1" 200 None +2025-03-07 16:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2552?force=true HTTP/1.1" 200 None +2025-03-07 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2551?force=true HTTP/1.1" 200 None +2025-03-07 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2550?force=true HTTP/1.1" 200 None +2025-03-07 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2549?force=true HTTP/1.1" 200 None +2025-03-07 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2548?force=true HTTP/1.1" 200 None +2025-03-07 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2547?force=true HTTP/1.1" 200 None +2025-03-07 16:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2546?force=true HTTP/1.1" 200 None +2025-03-07 16:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2545?force=true HTTP/1.1" 200 None +2025-03-07 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2544?force=true HTTP/1.1" 200 None +2025-03-07 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2543?force=true HTTP/1.1" 200 None +2025-03-07 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2542?force=true HTTP/1.1" 200 None +2025-03-07 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2541?force=true HTTP/1.1" 200 None +2025-03-07 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2540?force=true HTTP/1.1" 200 None +2025-03-07 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2539?force=true HTTP/1.1" 200 None +2025-03-07 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2538?force=true HTTP/1.1" 200 None +2025-03-07 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2537?force=true HTTP/1.1" 200 None +2025-03-07 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2536?force=true HTTP/1.1" 200 None +2025-03-07 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2535?force=true HTTP/1.1" 200 None +2025-03-07 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2534?force=true HTTP/1.1" 200 None +2025-03-07 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2533?force=true HTTP/1.1" 200 None +2025-03-07 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2532?force=true HTTP/1.1" 200 None +2025-03-07 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2531?force=true HTTP/1.1" 200 None +2025-03-07 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2563 HTTP/1.1" 200 None +2025-03-07 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2564 HTTP/1.1" 200 None +2025-03-07 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2565 HTTP/1.1" 200 None +2025-03-07 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2566 HTTP/1.1" 200 None +2025-03-07 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2567 HTTP/1.1" 200 None +2025-03-07 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2568 HTTP/1.1" 200 None +2025-03-07 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2569 HTTP/1.1" 200 None +2025-03-07 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2570 HTTP/1.1" 200 None +2025-03-07 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2571 HTTP/1.1" 200 None +2025-03-07 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2572 HTTP/1.1" 200 None +2025-03-07 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2573 HTTP/1.1" 200 None +2025-03-07 16:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2574 HTTP/1.1" 200 None +2025-03-07 16:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2575 HTTP/1.1" 200 None +2025-03-07 16:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2576 HTTP/1.1" 200 None +2025-03-07 16:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2577 HTTP/1.1" 200 None +2025-03-07 16:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2578 HTTP/1.1" 200 None +2025-03-07 16:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2579 HTTP/1.1" 200 None +2025-03-07 16:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2580 HTTP/1.1" 200 None +2025-03-07 16:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2581 HTTP/1.1" 200 None +2025-03-07 16:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2582 HTTP/1.1" 200 None +2025-03-07 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2583 HTTP/1.1" 200 None +2025-03-07 16:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2584 HTTP/1.1" 200 None +2025-03-07 16:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2585 HTTP/1.1" 200 None +2025-03-07 16:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2586 HTTP/1.1" 200 None +2025-03-07 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2587 HTTP/1.1" 200 None +2025-03-07 16:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2588 HTTP/1.1" 200 None +2025-03-07 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2589 HTTP/1.1" 200 None +2025-03-07 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2590 HTTP/1.1" 200 None +2025-03-07 16:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2591 HTTP/1.1" 200 None +2025-03-07 16:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2592 HTTP/1.1" 200 None +2025-03-07 16:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2593 HTTP/1.1" 200 None +2025-03-07 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2594 HTTP/1.1" 200 None +2025-03-07 16:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2595 HTTP/1.1" 200 None +2025-03-07 16:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2595?force=true HTTP/1.1" 200 None +2025-03-07 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2594?force=true HTTP/1.1" 200 None +2025-03-07 16:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2593?force=true HTTP/1.1" 200 None +2025-03-07 16:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2592?force=true HTTP/1.1" 200 None +2025-03-07 16:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2591?force=true HTTP/1.1" 200 None +2025-03-07 16:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2590?force=true HTTP/1.1" 200 None +2025-03-07 16:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2589?force=true HTTP/1.1" 200 None +2025-03-07 16:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2588?force=true HTTP/1.1" 200 None +2025-03-07 16:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2587?force=true HTTP/1.1" 200 None +2025-03-07 16:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2586?force=true HTTP/1.1" 200 None +2025-03-07 16:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2585?force=true HTTP/1.1" 200 None +2025-03-07 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2584?force=true HTTP/1.1" 200 None +2025-03-07 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2583?force=true HTTP/1.1" 200 None +2025-03-07 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2582?force=true HTTP/1.1" 200 None +2025-03-07 16:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2581?force=true HTTP/1.1" 200 None +2025-03-07 16:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2580?force=true HTTP/1.1" 200 None +2025-03-07 16:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2579?force=true HTTP/1.1" 200 None +2025-03-07 16:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2578?force=true HTTP/1.1" 200 None +2025-03-07 16:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2577?force=true HTTP/1.1" 200 None +2025-03-07 16:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2576?force=true HTTP/1.1" 200 None +2025-03-07 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2575?force=true HTTP/1.1" 200 None +2025-03-07 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2574?force=true HTTP/1.1" 200 None +2025-03-07 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2573?force=true HTTP/1.1" 200 None +2025-03-07 16:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2572?force=true HTTP/1.1" 200 None +2025-03-07 16:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2571?force=true HTTP/1.1" 200 None +2025-03-07 16:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2570?force=true HTTP/1.1" 200 None +2025-03-07 16:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2569?force=true HTTP/1.1" 200 None +2025-03-07 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2568?force=true HTTP/1.1" 200 None +2025-03-07 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2567?force=true HTTP/1.1" 200 None +2025-03-07 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2566?force=true HTTP/1.1" 200 None +2025-03-07 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2565?force=true HTTP/1.1" 200 None +2025-03-07 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2564?force=true HTTP/1.1" 200 None +2025-03-07 16:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2563?force=true HTTP/1.1" 200 None +2025-03-07 16:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2596 HTTP/1.1" 200 None +2025-03-07 16:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2597 HTTP/1.1" 200 None +2025-03-07 16:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2598 HTTP/1.1" 200 None +2025-03-07 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2599 HTTP/1.1" 200 None +2025-03-07 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2600 HTTP/1.1" 200 None +2025-03-07 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2601 HTTP/1.1" 200 None +2025-03-07 16:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2602 HTTP/1.1" 200 None +2025-03-07 16:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2603 HTTP/1.1" 200 None +2025-03-07 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2604 HTTP/1.1" 200 None +2025-03-07 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2605 HTTP/1.1" 200 None +2025-03-07 16:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2606 HTTP/1.1" 200 None +2025-03-07 16:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2607 HTTP/1.1" 200 None +2025-03-07 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2608 HTTP/1.1" 200 None +2025-03-07 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2609 HTTP/1.1" 200 None +2025-03-07 16:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2610 HTTP/1.1" 200 None +2025-03-07 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2611 HTTP/1.1" 200 None +2025-03-07 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2612 HTTP/1.1" 200 None +2025-03-07 16:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2613 HTTP/1.1" 200 None +2025-03-07 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2614 HTTP/1.1" 200 None +2025-03-07 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2615 HTTP/1.1" 200 None +2025-03-07 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2616 HTTP/1.1" 200 None +2025-03-07 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2617 HTTP/1.1" 200 None +2025-03-07 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2618 HTTP/1.1" 200 None +2025-03-07 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2619 HTTP/1.1" 200 None +2025-03-07 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2620 HTTP/1.1" 200 None +2025-03-07 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2621 HTTP/1.1" 200 None +2025-03-07 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2622 HTTP/1.1" 200 None +2025-03-07 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2623 HTTP/1.1" 200 None +2025-03-07 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2624 HTTP/1.1" 200 None +2025-03-07 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2625 HTTP/1.1" 200 None +2025-03-07 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2626 HTTP/1.1" 200 None +2025-03-07 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2627 HTTP/1.1" 200 None +2025-03-07 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2628 HTTP/1.1" 200 None +2025-03-07 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2629 HTTP/1.1" 200 None +2025-03-07 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2630 HTTP/1.1" 200 None +2025-03-07 16:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2631 HTTP/1.1" 200 None +2025-03-07 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2632 HTTP/1.1" 200 None +2025-03-07 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2633 HTTP/1.1" 200 None +2025-03-07 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2634 HTTP/1.1" 200 None +2025-03-07 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2635 HTTP/1.1" 200 None +2025-03-07 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2636 HTTP/1.1" 200 None +2025-03-07 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2637 HTTP/1.1" 200 None +2025-03-07 16:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2638 HTTP/1.1" 200 None +2025-03-07 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2639 HTTP/1.1" 200 None +2025-03-07 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2640 HTTP/1.1" 200 None +2025-03-07 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2641 HTTP/1.1" 200 None +2025-03-07 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2642 HTTP/1.1" 200 None +2025-03-07 16:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2643 HTTP/1.1" 200 None +2025-03-07 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2644 HTTP/1.1" 200 None +2025-03-07 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2645 HTTP/1.1" 200 None +2025-03-07 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2646 HTTP/1.1" 200 None +2025-03-07 16:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2647 HTTP/1.1" 200 None +2025-03-07 16:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2648 HTTP/1.1" 200 None +2025-03-07 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2649 HTTP/1.1" 200 None +2025-03-07 16:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2650 HTTP/1.1" 200 None +2025-03-07 16:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2651 HTTP/1.1" 200 None +2025-03-07 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2652 HTTP/1.1" 200 None +2025-03-07 16:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2653 HTTP/1.1" 200 None +2025-03-07 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2654 HTTP/1.1" 200 None +2025-03-07 16:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2655 HTTP/1.1" 200 None +2025-03-07 16:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2656 HTTP/1.1" 200 None +2025-03-07 16:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2657 HTTP/1.1" 200 None +2025-03-07 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2658 HTTP/1.1" 200 None +2025-03-07 16:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2659 HTTP/1.1" 200 None +2025-03-07 16:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2660 HTTP/1.1" 200 None +2025-03-07 16:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2661 HTTP/1.1" 200 None +2025-03-07 16:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2662 HTTP/1.1" 200 None +2025-03-07 16:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2663 HTTP/1.1" 200 None +2025-03-07 16:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2663?force=true HTTP/1.1" 200 None +2025-03-07 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2662?force=true HTTP/1.1" 200 None +2025-03-07 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2661?force=true HTTP/1.1" 200 None +2025-03-07 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2660?force=true HTTP/1.1" 200 None +2025-03-07 16:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2659?force=true HTTP/1.1" 200 None +2025-03-07 16:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2658?force=true HTTP/1.1" 200 None +2025-03-07 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2657?force=true HTTP/1.1" 200 None +2025-03-07 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2656?force=true HTTP/1.1" 200 None +2025-03-07 16:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2655?force=true HTTP/1.1" 200 None +2025-03-07 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2654?force=true HTTP/1.1" 200 None +2025-03-07 16:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2653?force=true HTTP/1.1" 200 None +2025-03-07 16:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2652?force=true HTTP/1.1" 200 None +2025-03-07 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2651?force=true HTTP/1.1" 200 None +2025-03-07 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2650?force=true HTTP/1.1" 200 None +2025-03-07 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2649?force=true HTTP/1.1" 200 None +2025-03-07 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2648?force=true HTTP/1.1" 200 None +2025-03-07 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2647?force=true HTTP/1.1" 200 None +2025-03-07 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2646?force=true HTTP/1.1" 200 None +2025-03-07 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2645?force=true HTTP/1.1" 200 None +2025-03-07 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2644?force=true HTTP/1.1" 200 None +2025-03-07 16:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2643?force=true HTTP/1.1" 200 None +2025-03-07 16:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2642?force=true HTTP/1.1" 200 None +2025-03-07 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2641?force=true HTTP/1.1" 200 None +2025-03-07 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2640?force=true HTTP/1.1" 200 None +2025-03-07 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2639?force=true HTTP/1.1" 200 None +2025-03-07 16:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2638?force=true HTTP/1.1" 200 None +2025-03-07 16:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2637?force=true HTTP/1.1" 200 None +2025-03-07 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2636?force=true HTTP/1.1" 200 None +2025-03-07 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2635?force=true HTTP/1.1" 200 None +2025-03-07 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2634?force=true HTTP/1.1" 200 None +2025-03-07 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2633?force=true HTTP/1.1" 200 None +2025-03-07 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2632?force=true HTTP/1.1" 200 None +2025-03-07 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2631?force=true HTTP/1.1" 200 None +2025-03-07 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2630?force=true HTTP/1.1" 200 None +2025-03-07 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2629?force=true HTTP/1.1" 200 None +2025-03-07 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2628?force=true HTTP/1.1" 200 None +2025-03-07 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2627?force=true HTTP/1.1" 200 None +2025-03-07 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2626?force=true HTTP/1.1" 200 None +2025-03-07 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2625?force=true HTTP/1.1" 200 None +2025-03-07 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2624?force=true HTTP/1.1" 200 None +2025-03-07 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2623?force=true HTTP/1.1" 200 None +2025-03-07 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2622?force=true HTTP/1.1" 200 None +2025-03-07 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2621?force=true HTTP/1.1" 200 None +2025-03-07 16:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2620?force=true HTTP/1.1" 200 None +2025-03-07 16:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2619?force=true HTTP/1.1" 200 None +2025-03-07 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2618?force=true HTTP/1.1" 200 None +2025-03-07 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2617?force=true HTTP/1.1" 200 None +2025-03-07 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2616?force=true HTTP/1.1" 200 None +2025-03-07 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2615?force=true HTTP/1.1" 200 None +2025-03-07 16:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2614?force=true HTTP/1.1" 200 None +2025-03-07 16:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2613?force=true HTTP/1.1" 200 None +2025-03-07 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2612?force=true HTTP/1.1" 200 None +2025-03-07 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2611?force=true HTTP/1.1" 200 None +2025-03-07 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2610?force=true HTTP/1.1" 200 None +2025-03-07 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2609?force=true HTTP/1.1" 200 None +2025-03-07 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2608?force=true HTTP/1.1" 200 None +2025-03-07 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2607?force=true HTTP/1.1" 200 None +2025-03-07 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2606?force=true HTTP/1.1" 200 None +2025-03-07 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2605?force=true HTTP/1.1" 200 None +2025-03-07 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2604?force=true HTTP/1.1" 200 None +2025-03-07 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2603?force=true HTTP/1.1" 200 None +2025-03-07 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2602?force=true HTTP/1.1" 200 None +2025-03-07 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2601?force=true HTTP/1.1" 200 None +2025-03-07 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2600?force=true HTTP/1.1" 200 None +2025-03-07 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2599?force=true HTTP/1.1" 200 None +2025-03-07 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2598?force=true HTTP/1.1" 200 None +2025-03-07 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2597?force=true HTTP/1.1" 200 None +2025-03-07 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2596?force=true HTTP/1.1" 200 None +2025-03-07 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2664 HTTP/1.1" 200 None +2025-03-07 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2665 HTTP/1.1" 200 None +2025-03-07 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2666 HTTP/1.1" 200 None +2025-03-07 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2667 HTTP/1.1" 200 None +2025-03-07 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2668 HTTP/1.1" 200 None +2025-03-07 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2669 HTTP/1.1" 200 None +2025-03-07 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2670 HTTP/1.1" 200 None +2025-03-07 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2671 HTTP/1.1" 200 None +2025-03-07 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2672 HTTP/1.1" 200 None +2025-03-07 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2673 HTTP/1.1" 200 None +2025-03-07 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2674 HTTP/1.1" 200 None +2025-03-07 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2675 HTTP/1.1" 200 None +2025-03-07 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2676 HTTP/1.1" 200 None +2025-03-07 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2677 HTTP/1.1" 200 None +2025-03-07 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2678 HTTP/1.1" 200 None +2025-03-07 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2679 HTTP/1.1" 200 None +2025-03-07 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2680 HTTP/1.1" 200 None +2025-03-07 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2681 HTTP/1.1" 200 None +2025-03-07 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2682 HTTP/1.1" 200 None +2025-03-07 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2683 HTTP/1.1" 200 None +2025-03-07 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2684 HTTP/1.1" 200 None +2025-03-07 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2685 HTTP/1.1" 200 None +2025-03-07 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2686 HTTP/1.1" 200 None +2025-03-07 16:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2687 HTTP/1.1" 200 None +2025-03-07 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2688 HTTP/1.1" 200 None +2025-03-07 16:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2689 HTTP/1.1" 200 None +2025-03-07 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2690 HTTP/1.1" 200 None +2025-03-07 16:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2691 HTTP/1.1" 200 None +2025-03-07 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2692 HTTP/1.1" 200 None +2025-03-07 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2693 HTTP/1.1" 200 None +2025-03-07 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2694 HTTP/1.1" 200 None +2025-03-07 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2695 HTTP/1.1" 200 None +2025-03-07 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2696 HTTP/1.1" 200 None +2025-03-07 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2697 HTTP/1.1" 200 None +2025-03-07 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2698 HTTP/1.1" 200 None +2025-03-07 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2699 HTTP/1.1" 200 None +2025-03-07 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2700 HTTP/1.1" 200 None +2025-03-07 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2701 HTTP/1.1" 200 None +2025-03-07 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2702 HTTP/1.1" 200 None +2025-03-07 16:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2703 HTTP/1.1" 200 None +2025-03-07 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2704 HTTP/1.1" 200 None +2025-03-07 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2705 HTTP/1.1" 200 None +2025-03-07 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2706 HTTP/1.1" 200 None +2025-03-07 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2707 HTTP/1.1" 200 None +2025-03-07 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2708 HTTP/1.1" 200 None +2025-03-07 16:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2709 HTTP/1.1" 200 None +2025-03-07 16:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2710 HTTP/1.1" 200 None +2025-03-07 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2711 HTTP/1.1" 200 None +2025-03-07 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2712 HTTP/1.1" 200 None +2025-03-07 16:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2713 HTTP/1.1" 200 None +2025-03-07 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2714 HTTP/1.1" 200 None +2025-03-07 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2715 HTTP/1.1" 200 None +2025-03-07 16:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2716 HTTP/1.1" 200 None +2025-03-07 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2717 HTTP/1.1" 200 None +2025-03-07 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2718 HTTP/1.1" 200 None +2025-03-07 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2719 HTTP/1.1" 200 None +2025-03-07 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2720 HTTP/1.1" 200 None +2025-03-07 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2721 HTTP/1.1" 200 None +2025-03-07 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2722 HTTP/1.1" 200 None +2025-03-07 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2723 HTTP/1.1" 200 None +2025-03-07 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2724 HTTP/1.1" 200 None +2025-03-07 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2725 HTTP/1.1" 200 None +2025-03-07 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2726 HTTP/1.1" 200 None +2025-03-07 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2727 HTTP/1.1" 200 None +2025-03-07 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2728 HTTP/1.1" 200 None +2025-03-07 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2729 HTTP/1.1" 200 None +2025-03-07 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2730 HTTP/1.1" 200 None +2025-03-07 16:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2731 HTTP/1.1" 200 None +2025-03-07 16:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2732 HTTP/1.1" 200 None +2025-03-07 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2733 HTTP/1.1" 200 None +2025-03-07 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2734 HTTP/1.1" 200 None +2025-03-07 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2735 HTTP/1.1" 200 None +2025-03-07 16:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2736 HTTP/1.1" 200 None +2025-03-07 16:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2737 HTTP/1.1" 200 None +2025-03-07 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2738 HTTP/1.1" 200 None +2025-03-07 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2739 HTTP/1.1" 200 None +2025-03-07 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2740 HTTP/1.1" 200 None +2025-03-07 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2740?force=true HTTP/1.1" 200 None +2025-03-07 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2739?force=true HTTP/1.1" 200 None +2025-03-07 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2738?force=true HTTP/1.1" 200 None +2025-03-07 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2737?force=true HTTP/1.1" 200 None +2025-03-07 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2736?force=true HTTP/1.1" 200 None +2025-03-07 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2735?force=true HTTP/1.1" 200 None +2025-03-07 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2734?force=true HTTP/1.1" 200 None +2025-03-07 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2733?force=true HTTP/1.1" 200 None +2025-03-07 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2732?force=true HTTP/1.1" 200 None +2025-03-07 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2731?force=true HTTP/1.1" 200 None +2025-03-07 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2730?force=true HTTP/1.1" 200 None +2025-03-07 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2729?force=true HTTP/1.1" 200 None +2025-03-07 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2728?force=true HTTP/1.1" 200 None +2025-03-07 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2727?force=true HTTP/1.1" 200 None +2025-03-07 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2726?force=true HTTP/1.1" 200 None +2025-03-07 16:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2725?force=true HTTP/1.1" 200 None +2025-03-07 16:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2724?force=true HTTP/1.1" 200 None +2025-03-07 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2723?force=true HTTP/1.1" 200 None +2025-03-07 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2722?force=true HTTP/1.1" 200 None +2025-03-07 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2721?force=true HTTP/1.1" 200 None +2025-03-07 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2720?force=true HTTP/1.1" 200 None +2025-03-07 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2719?force=true HTTP/1.1" 200 None +2025-03-07 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2718?force=true HTTP/1.1" 200 None +2025-03-07 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2717?force=true HTTP/1.1" 200 None +2025-03-07 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2716?force=true HTTP/1.1" 200 None +2025-03-07 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2715?force=true HTTP/1.1" 200 None +2025-03-07 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2714?force=true HTTP/1.1" 200 None +2025-03-07 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2713?force=true HTTP/1.1" 200 None +2025-03-07 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2712?force=true HTTP/1.1" 200 None +2025-03-07 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2711?force=true HTTP/1.1" 200 None +2025-03-07 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2710?force=true HTTP/1.1" 200 None +2025-03-07 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2709?force=true HTTP/1.1" 200 None +2025-03-07 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2708?force=true HTTP/1.1" 200 None +2025-03-07 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2707?force=true HTTP/1.1" 200 None +2025-03-07 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2706?force=true HTTP/1.1" 200 None +2025-03-07 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2705?force=true HTTP/1.1" 200 None +2025-03-07 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2704?force=true HTTP/1.1" 200 None +2025-03-07 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2703?force=true HTTP/1.1" 200 None +2025-03-07 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2702?force=true HTTP/1.1" 200 None +2025-03-07 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2701?force=true HTTP/1.1" 200 None +2025-03-07 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2700?force=true HTTP/1.1" 200 None +2025-03-07 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2699?force=true HTTP/1.1" 200 None +2025-03-07 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2698?force=true HTTP/1.1" 200 None +2025-03-07 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2697?force=true HTTP/1.1" 200 None +2025-03-07 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2696?force=true HTTP/1.1" 200 None +2025-03-07 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2695?force=true HTTP/1.1" 200 None +2025-03-07 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2694?force=true HTTP/1.1" 200 None +2025-03-07 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2693?force=true HTTP/1.1" 200 None +2025-03-07 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2692?force=true HTTP/1.1" 200 None +2025-03-07 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2691?force=true HTTP/1.1" 200 None +2025-03-07 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2690?force=true HTTP/1.1" 200 None +2025-03-07 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2689?force=true HTTP/1.1" 200 None +2025-03-07 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2688?force=true HTTP/1.1" 200 None +2025-03-07 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2687?force=true HTTP/1.1" 200 None +2025-03-07 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2686?force=true HTTP/1.1" 200 None +2025-03-07 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2685?force=true HTTP/1.1" 200 None +2025-03-07 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2684?force=true HTTP/1.1" 200 None +2025-03-07 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2683?force=true HTTP/1.1" 200 None +2025-03-07 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2682?force=true HTTP/1.1" 200 None +2025-03-07 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2681?force=true HTTP/1.1" 200 None +2025-03-07 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2680?force=true HTTP/1.1" 200 None +2025-03-07 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2679?force=true HTTP/1.1" 200 None +2025-03-07 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2678?force=true HTTP/1.1" 200 None +2025-03-07 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2677?force=true HTTP/1.1" 200 None +2025-03-07 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2676?force=true HTTP/1.1" 200 None +2025-03-07 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2675?force=true HTTP/1.1" 200 None +2025-03-07 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2674?force=true HTTP/1.1" 200 None +2025-03-07 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2673?force=true HTTP/1.1" 200 None +2025-03-07 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2672?force=true HTTP/1.1" 200 None +2025-03-07 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2671?force=true HTTP/1.1" 200 None +2025-03-07 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2670?force=true HTTP/1.1" 200 None +2025-03-07 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2669?force=true HTTP/1.1" 200 None +2025-03-07 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2668?force=true HTTP/1.1" 200 None +2025-03-07 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2667?force=true HTTP/1.1" 200 None +2025-03-07 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2666?force=true HTTP/1.1" 200 None +2025-03-07 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2665?force=true HTTP/1.1" 200 None +2025-03-07 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2664?force=true HTTP/1.1" 200 None +2025-03-07 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2741 HTTP/1.1" 200 None +2025-03-07 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2742 HTTP/1.1" 200 None +2025-03-07 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2743 HTTP/1.1" 200 None +2025-03-07 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2744 HTTP/1.1" 200 None +2025-03-07 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2745 HTTP/1.1" 200 None +2025-03-07 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2746 HTTP/1.1" 200 None +2025-03-07 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2747 HTTP/1.1" 200 None +2025-03-07 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2748 HTTP/1.1" 200 None +2025-03-07 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2749 HTTP/1.1" 200 None +2025-03-07 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2750 HTTP/1.1" 200 None +2025-03-07 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2751 HTTP/1.1" 200 None +2025-03-07 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2752 HTTP/1.1" 200 None +2025-03-07 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2753 HTTP/1.1" 200 None +2025-03-07 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2754 HTTP/1.1" 200 None +2025-03-07 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2755 HTTP/1.1" 200 None +2025-03-07 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2756 HTTP/1.1" 200 None +2025-03-07 16:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2757 HTTP/1.1" 200 None +2025-03-07 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2758 HTTP/1.1" 200 None +2025-03-07 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2759 HTTP/1.1" 200 None +2025-03-07 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2760 HTTP/1.1" 200 None +2025-03-07 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2761 HTTP/1.1" 200 None +2025-03-07 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2762 HTTP/1.1" 200 None +2025-03-07 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2763 HTTP/1.1" 200 None +2025-03-07 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2764 HTTP/1.1" 200 None +2025-03-07 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2765 HTTP/1.1" 200 None +2025-03-07 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2766 HTTP/1.1" 200 None +2025-03-07 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2767 HTTP/1.1" 200 None +2025-03-07 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2768 HTTP/1.1" 200 None +2025-03-07 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2769 HTTP/1.1" 200 None +2025-03-07 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2770 HTTP/1.1" 200 None +2025-03-07 16:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2771 HTTP/1.1" 200 None +2025-03-07 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2772 HTTP/1.1" 200 None +2025-03-07 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2773 HTTP/1.1" 200 None +2025-03-07 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2774 HTTP/1.1" 200 None +2025-03-07 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2775 HTTP/1.1" 200 None +2025-03-07 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2776 HTTP/1.1" 200 None +2025-03-07 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2777 HTTP/1.1" 200 None +2025-03-07 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2778 HTTP/1.1" 200 None +2025-03-07 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2779 HTTP/1.1" 200 None +2025-03-07 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2780 HTTP/1.1" 200 None +2025-03-07 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2781 HTTP/1.1" 200 None +2025-03-07 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2782 HTTP/1.1" 200 None +2025-03-07 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2783 HTTP/1.1" 200 None +2025-03-07 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2784 HTTP/1.1" 200 None +2025-03-07 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2785 HTTP/1.1" 200 None +2025-03-07 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2786 HTTP/1.1" 200 None +2025-03-07 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2787 HTTP/1.1" 200 None +2025-03-07 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2788 HTTP/1.1" 200 None +2025-03-07 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2789 HTTP/1.1" 200 None +2025-03-07 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2790 HTTP/1.1" 200 None +2025-03-07 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2791 HTTP/1.1" 200 None +2025-03-07 16:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2792 HTTP/1.1" 200 None +2025-03-07 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2793 HTTP/1.1" 200 None +2025-03-07 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2794 HTTP/1.1" 200 None +2025-03-07 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2795 HTTP/1.1" 200 None +2025-03-07 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2796 HTTP/1.1" 200 None +2025-03-07 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2797 HTTP/1.1" 200 None +2025-03-07 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2798 HTTP/1.1" 200 None +2025-03-07 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2799 HTTP/1.1" 200 None +2025-03-07 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2800 HTTP/1.1" 200 None +2025-03-07 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2801 HTTP/1.1" 200 None +2025-03-07 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2802 HTTP/1.1" 200 None +2025-03-07 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2803 HTTP/1.1" 200 None +2025-03-07 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2804 HTTP/1.1" 200 None +2025-03-07 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2805 HTTP/1.1" 200 None +2025-03-07 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2806 HTTP/1.1" 200 None +2025-03-07 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2807 HTTP/1.1" 200 None +2025-03-07 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2808 HTTP/1.1" 200 None +2025-03-07 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2809 HTTP/1.1" 200 None +2025-03-07 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2810 HTTP/1.1" 200 None +2025-03-07 16:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2811 HTTP/1.1" 200 None +2025-03-07 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2812 HTTP/1.1" 200 None +2025-03-07 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2813 HTTP/1.1" 200 None +2025-03-07 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2814 HTTP/1.1" 200 None +2025-03-07 16:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2815 HTTP/1.1" 200 None +2025-03-07 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2816 HTTP/1.1" 200 None +2025-03-07 16:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2817 HTTP/1.1" 200 None +2025-03-07 16:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2818 HTTP/1.1" 200 None +2025-03-07 16:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2818?force=true HTTP/1.1" 200 None +2025-03-07 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2817?force=true HTTP/1.1" 200 None +2025-03-07 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2816?force=true HTTP/1.1" 200 None +2025-03-07 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2815?force=true HTTP/1.1" 200 None +2025-03-07 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2814?force=true HTTP/1.1" 200 None +2025-03-07 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2813?force=true HTTP/1.1" 200 None +2025-03-07 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2812?force=true HTTP/1.1" 200 None +2025-03-07 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2811?force=true HTTP/1.1" 200 None +2025-03-07 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2810?force=true HTTP/1.1" 200 None +2025-03-07 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2809?force=true HTTP/1.1" 200 None +2025-03-07 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2808?force=true HTTP/1.1" 200 None +2025-03-07 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2807?force=true HTTP/1.1" 200 None +2025-03-07 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2806?force=true HTTP/1.1" 200 None +2025-03-07 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2805?force=true HTTP/1.1" 200 None +2025-03-07 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2804?force=true HTTP/1.1" 200 None +2025-03-07 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2803?force=true HTTP/1.1" 200 None +2025-03-07 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2802?force=true HTTP/1.1" 200 None +2025-03-07 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2801?force=true HTTP/1.1" 200 None +2025-03-07 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2800?force=true HTTP/1.1" 200 None +2025-03-07 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2799?force=true HTTP/1.1" 200 None +2025-03-07 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2798?force=true HTTP/1.1" 200 None +2025-03-07 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2797?force=true HTTP/1.1" 200 None +2025-03-07 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2796?force=true HTTP/1.1" 200 None +2025-03-07 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2795?force=true HTTP/1.1" 200 None +2025-03-07 16:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2794?force=true HTTP/1.1" 200 None +2025-03-07 16:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2793?force=true HTTP/1.1" 200 None +2025-03-07 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2792?force=true HTTP/1.1" 200 None +2025-03-07 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2791?force=true HTTP/1.1" 200 None +2025-03-07 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2790?force=true HTTP/1.1" 200 None +2025-03-07 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2789?force=true HTTP/1.1" 200 None +2025-03-07 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2788?force=true HTTP/1.1" 200 None +2025-03-07 16:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2787?force=true HTTP/1.1" 200 None +2025-03-07 16:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2786?force=true HTTP/1.1" 200 None +2025-03-07 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2785?force=true HTTP/1.1" 200 None +2025-03-07 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2784?force=true HTTP/1.1" 200 None +2025-03-07 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2783?force=true HTTP/1.1" 200 None +2025-03-07 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2782?force=true HTTP/1.1" 200 None +2025-03-07 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2781?force=true HTTP/1.1" 200 None +2025-03-07 16:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2780?force=true HTTP/1.1" 200 None +2025-03-07 16:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2779?force=true HTTP/1.1" 200 None +2025-03-07 16:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2778?force=true HTTP/1.1" 200 None +2025-03-07 16:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2777?force=true HTTP/1.1" 200 None +2025-03-07 16:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2776?force=true HTTP/1.1" 200 None +2025-03-07 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2775?force=true HTTP/1.1" 200 None +2025-03-07 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2774?force=true HTTP/1.1" 200 None +2025-03-07 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2773?force=true HTTP/1.1" 200 None +2025-03-07 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2772?force=true HTTP/1.1" 200 None +2025-03-07 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2771?force=true HTTP/1.1" 200 None +2025-03-07 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2770?force=true HTTP/1.1" 200 None +2025-03-07 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2769?force=true HTTP/1.1" 200 None +2025-03-07 16:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2768?force=true HTTP/1.1" 200 None +2025-03-07 16:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2767?force=true HTTP/1.1" 200 None +2025-03-07 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2766?force=true HTTP/1.1" 200 None +2025-03-07 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2765?force=true HTTP/1.1" 200 None +2025-03-07 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2764?force=true HTTP/1.1" 200 None +2025-03-07 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2763?force=true HTTP/1.1" 200 None +2025-03-07 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2762?force=true HTTP/1.1" 200 None +2025-03-07 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2761?force=true HTTP/1.1" 200 None +2025-03-07 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2760?force=true HTTP/1.1" 200 None +2025-03-07 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2759?force=true HTTP/1.1" 200 None +2025-03-07 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2758?force=true HTTP/1.1" 200 None +2025-03-07 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2757?force=true HTTP/1.1" 200 None +2025-03-07 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2756?force=true HTTP/1.1" 200 None +2025-03-07 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2755?force=true HTTP/1.1" 200 None +2025-03-07 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2754?force=true HTTP/1.1" 200 None +2025-03-07 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2753?force=true HTTP/1.1" 200 None +2025-03-07 16:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2752?force=true HTTP/1.1" 200 None +2025-03-07 16:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2751?force=true HTTP/1.1" 200 None +2025-03-07 16:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2750?force=true HTTP/1.1" 200 None +2025-03-07 16:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2749?force=true HTTP/1.1" 200 None +2025-03-07 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2748?force=true HTTP/1.1" 200 None +2025-03-07 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2747?force=true HTTP/1.1" 200 None +2025-03-07 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2746?force=true HTTP/1.1" 200 None +2025-03-07 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2745?force=true HTTP/1.1" 200 None +2025-03-07 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2744?force=true HTTP/1.1" 200 None +2025-03-07 16:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2743?force=true HTTP/1.1" 200 None +2025-03-07 16:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2742?force=true HTTP/1.1" 200 None +2025-03-07 16:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2741?force=true HTTP/1.1" 200 None +2025-03-07 16:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2819 HTTP/1.1" 200 None +2025-03-07 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2820 HTTP/1.1" 200 None +2025-03-07 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2821 HTTP/1.1" 200 None +2025-03-07 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2822 HTTP/1.1" 200 None +2025-03-07 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2823 HTTP/1.1" 200 None +2025-03-07 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2824 HTTP/1.1" 200 None +2025-03-07 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2825 HTTP/1.1" 200 None +2025-03-07 16:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2826 HTTP/1.1" 200 None +2025-03-07 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2827 HTTP/1.1" 200 None +2025-03-07 16:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2828 HTTP/1.1" 200 None +2025-03-07 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2829 HTTP/1.1" 200 None +2025-03-07 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2830 HTTP/1.1" 200 None +2025-03-07 16:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2831 HTTP/1.1" 200 None +2025-03-07 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2832 HTTP/1.1" 200 None +2025-03-07 16:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2833 HTTP/1.1" 200 None +2025-03-07 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2834 HTTP/1.1" 200 None +2025-03-07 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2835 HTTP/1.1" 200 None +2025-03-07 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2836 HTTP/1.1" 200 None +2025-03-07 16:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2837 HTTP/1.1" 200 None +2025-03-07 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2838 HTTP/1.1" 200 None +2025-03-07 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2839 HTTP/1.1" 200 None +2025-03-07 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2840 HTTP/1.1" 200 None +2025-03-07 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2841 HTTP/1.1" 200 None +2025-03-07 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2842 HTTP/1.1" 200 None +2025-03-07 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2843 HTTP/1.1" 200 None +2025-03-07 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2844 HTTP/1.1" 200 None +2025-03-07 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2845 HTTP/1.1" 200 None +2025-03-07 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2846 HTTP/1.1" 200 None +2025-03-07 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2847 HTTP/1.1" 200 None +2025-03-07 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2848 HTTP/1.1" 200 None +2025-03-07 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2849 HTTP/1.1" 200 None +2025-03-07 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2850 HTTP/1.1" 200 None +2025-03-07 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2851 HTTP/1.1" 200 None +2025-03-07 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2852 HTTP/1.1" 200 None +2025-03-07 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2853 HTTP/1.1" 200 None +2025-03-07 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2854 HTTP/1.1" 200 None +2025-03-07 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2855 HTTP/1.1" 200 None +2025-03-07 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2856 HTTP/1.1" 200 None +2025-03-07 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2857 HTTP/1.1" 200 None +2025-03-07 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2858 HTTP/1.1" 200 None +2025-03-07 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2859 HTTP/1.1" 200 None +2025-03-07 16:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2860 HTTP/1.1" 200 None +2025-03-07 16:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2861 HTTP/1.1" 200 None +2025-03-07 16:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2862 HTTP/1.1" 200 None +2025-03-07 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2863 HTTP/1.1" 200 None +2025-03-07 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2864 HTTP/1.1" 200 None +2025-03-07 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2865 HTTP/1.1" 200 None +2025-03-07 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2866 HTTP/1.1" 200 None +2025-03-07 16:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2867 HTTP/1.1" 200 None +2025-03-07 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2868 HTTP/1.1" 200 None +2025-03-07 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2869 HTTP/1.1" 200 None +2025-03-07 16:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2870 HTTP/1.1" 200 None +2025-03-07 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2871 HTTP/1.1" 200 None +2025-03-07 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2872 HTTP/1.1" 200 None +2025-03-07 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2873 HTTP/1.1" 200 None +2025-03-07 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2874 HTTP/1.1" 200 None +2025-03-07 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2875 HTTP/1.1" 200 None +2025-03-07 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2876 HTTP/1.1" 200 None +2025-03-07 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2877 HTTP/1.1" 200 None +2025-03-07 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2878 HTTP/1.1" 200 None +2025-03-07 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2879 HTTP/1.1" 200 None +2025-03-07 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2880 HTTP/1.1" 200 None +2025-03-07 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2881 HTTP/1.1" 200 None +2025-03-07 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2882 HTTP/1.1" 200 None +2025-03-07 16:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2883 HTTP/1.1" 200 None +2025-03-07 16:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2884 HTTP/1.1" 200 None +2025-03-07 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2885 HTTP/1.1" 200 None +2025-03-07 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2886 HTTP/1.1" 200 None +2025-03-07 16:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2887 HTTP/1.1" 200 None +2025-03-07 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2888 HTTP/1.1" 200 None +2025-03-07 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2889 HTTP/1.1" 200 None +2025-03-07 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2890 HTTP/1.1" 200 None +2025-03-07 16:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2891 HTTP/1.1" 200 None +2025-03-07 16:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2892 HTTP/1.1" 200 None +2025-03-07 16:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2893 HTTP/1.1" 200 None +2025-03-07 16:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2894 HTTP/1.1" 200 None +2025-03-07 16:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2895 HTTP/1.1" 200 None +2025-03-07 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2896 HTTP/1.1" 200 None +2025-03-07 16:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2897 HTTP/1.1" 200 None +2025-03-07 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2898 HTTP/1.1" 200 None +2025-03-07 16:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2899 HTTP/1.1" 200 None +2025-03-07 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2900 HTTP/1.1" 200 None +2025-03-07 16:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2901 HTTP/1.1" 200 None +2025-03-07 16:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2902 HTTP/1.1" 200 None +2025-03-07 16:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2903 HTTP/1.1" 200 None +2025-03-07 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2904 HTTP/1.1" 200 None +2025-03-07 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2905 HTTP/1.1" 200 None +2025-03-07 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2906 HTTP/1.1" 200 None +2025-03-07 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2907 HTTP/1.1" 200 None +2025-03-07 16:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2908 HTTP/1.1" 200 None +2025-03-07 16:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2909 HTTP/1.1" 200 None +2025-03-07 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2910 HTTP/1.1" 200 None +2025-03-07 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2911 HTTP/1.1" 200 None +2025-03-07 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2912 HTTP/1.1" 200 None +2025-03-07 16:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2913 HTTP/1.1" 200 None +2025-03-07 16:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2914 HTTP/1.1" 200 None +2025-03-07 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2915 HTTP/1.1" 200 None +2025-03-07 16:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2916 HTTP/1.1" 200 None +2025-03-07 16:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2917 HTTP/1.1" 200 None +2025-03-07 16:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2918 HTTP/1.1" 200 None +2025-03-07 16:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2919 HTTP/1.1" 200 None +2025-03-07 16:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2920 HTTP/1.1" 200 None +2025-03-07 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2920?force=true HTTP/1.1" 200 None +2025-03-07 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2919?force=true HTTP/1.1" 200 None +2025-03-07 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2918?force=true HTTP/1.1" 200 None +2025-03-07 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2917?force=true HTTP/1.1" 200 None +2025-03-07 16:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2916?force=true HTTP/1.1" 200 None +2025-03-07 16:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2915?force=true HTTP/1.1" 200 None +2025-03-07 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2914?force=true HTTP/1.1" 200 None +2025-03-07 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2913?force=true HTTP/1.1" 200 None +2025-03-07 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2912?force=true HTTP/1.1" 200 None +2025-03-07 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2911?force=true HTTP/1.1" 200 None +2025-03-07 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2910?force=true HTTP/1.1" 200 None +2025-03-07 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2909?force=true HTTP/1.1" 200 None +2025-03-07 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2908?force=true HTTP/1.1" 200 None +2025-03-07 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2907?force=true HTTP/1.1" 200 None +2025-03-07 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2906?force=true HTTP/1.1" 200 None +2025-03-07 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2905?force=true HTTP/1.1" 200 None +2025-03-07 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2904?force=true HTTP/1.1" 200 None +2025-03-07 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2903?force=true HTTP/1.1" 200 None +2025-03-07 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2902?force=true HTTP/1.1" 200 None +2025-03-07 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2901?force=true HTTP/1.1" 200 None +2025-03-07 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2900?force=true HTTP/1.1" 200 None +2025-03-07 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2899?force=true HTTP/1.1" 200 None +2025-03-07 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2898?force=true HTTP/1.1" 200 None +2025-03-07 16:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2897?force=true HTTP/1.1" 200 None +2025-03-07 16:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2896?force=true HTTP/1.1" 200 None +2025-03-07 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2895?force=true HTTP/1.1" 200 None +2025-03-07 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2894?force=true HTTP/1.1" 200 None +2025-03-07 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2893?force=true HTTP/1.1" 200 None +2025-03-07 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2892?force=true HTTP/1.1" 200 None +2025-03-07 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2891?force=true HTTP/1.1" 200 None +2025-03-07 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2890?force=true HTTP/1.1" 200 None +2025-03-07 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2889?force=true HTTP/1.1" 200 None +2025-03-07 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2888?force=true HTTP/1.1" 200 None +2025-03-07 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2887?force=true HTTP/1.1" 200 None +2025-03-07 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2886?force=true HTTP/1.1" 200 None +2025-03-07 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2885?force=true HTTP/1.1" 200 None +2025-03-07 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2884?force=true HTTP/1.1" 200 None +2025-03-07 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2883?force=true HTTP/1.1" 200 None +2025-03-07 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2882?force=true HTTP/1.1" 200 None +2025-03-07 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2881?force=true HTTP/1.1" 200 None +2025-03-07 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2880?force=true HTTP/1.1" 200 None +2025-03-07 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2879?force=true HTTP/1.1" 200 None +2025-03-07 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2878?force=true HTTP/1.1" 200 None +2025-03-07 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2877?force=true HTTP/1.1" 200 None +2025-03-07 16:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2876?force=true HTTP/1.1" 200 None +2025-03-07 16:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2875?force=true HTTP/1.1" 200 None +2025-03-07 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2874?force=true HTTP/1.1" 200 None +2025-03-07 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2873?force=true HTTP/1.1" 200 None +2025-03-07 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2872?force=true HTTP/1.1" 200 None +2025-03-07 16:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2871?force=true HTTP/1.1" 200 None +2025-03-07 16:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2870?force=true HTTP/1.1" 200 None +2025-03-07 16:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2869?force=true HTTP/1.1" 200 None +2025-03-07 16:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2868?force=true HTTP/1.1" 200 None +2025-03-07 16:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2867?force=true HTTP/1.1" 200 None +2025-03-07 16:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2866?force=true HTTP/1.1" 200 None +2025-03-07 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2865?force=true HTTP/1.1" 200 None +2025-03-07 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2864?force=true HTTP/1.1" 200 None +2025-03-07 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2863?force=true HTTP/1.1" 200 None +2025-03-07 16:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2862?force=true HTTP/1.1" 200 None +2025-03-07 16:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2861?force=true HTTP/1.1" 200 None +2025-03-07 16:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2860?force=true HTTP/1.1" 200 None +2025-03-07 16:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2859?force=true HTTP/1.1" 200 None +2025-03-07 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2858?force=true HTTP/1.1" 200 None +2025-03-07 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2857?force=true HTTP/1.1" 200 None +2025-03-07 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2856?force=true HTTP/1.1" 200 None +2025-03-07 16:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2855?force=true HTTP/1.1" 200 None +2025-03-07 16:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2854?force=true HTTP/1.1" 200 None +2025-03-07 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2853?force=true HTTP/1.1" 200 None +2025-03-07 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2852?force=true HTTP/1.1" 200 None +2025-03-07 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2851?force=true HTTP/1.1" 200 None +2025-03-07 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2850?force=true HTTP/1.1" 200 None +2025-03-07 16:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2849?force=true HTTP/1.1" 200 None +2025-03-07 16:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2848?force=true HTTP/1.1" 200 None +2025-03-07 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2847?force=true HTTP/1.1" 200 None +2025-03-07 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2846?force=true HTTP/1.1" 200 None +2025-03-07 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2845?force=true HTTP/1.1" 200 None +2025-03-07 16:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2844?force=true HTTP/1.1" 200 None +2025-03-07 16:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2843?force=true HTTP/1.1" 200 None +2025-03-07 16:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2842?force=true HTTP/1.1" 200 None +2025-03-07 16:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2841?force=true HTTP/1.1" 200 None +2025-03-07 16:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2840?force=true HTTP/1.1" 200 None +2025-03-07 16:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2839?force=true HTTP/1.1" 200 None +2025-03-07 16:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2838?force=true HTTP/1.1" 200 None +2025-03-07 16:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2837?force=true HTTP/1.1" 200 None +2025-03-07 16:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2836?force=true HTTP/1.1" 200 None +2025-03-07 16:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2835?force=true HTTP/1.1" 200 None +2025-03-07 16:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2834?force=true HTTP/1.1" 200 None +2025-03-07 16:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2833?force=true HTTP/1.1" 200 None +2025-03-07 16:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2832?force=true HTTP/1.1" 200 None +2025-03-07 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2831?force=true HTTP/1.1" 200 None +2025-03-07 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2830?force=true HTTP/1.1" 200 None +2025-03-07 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2829?force=true HTTP/1.1" 200 None +2025-03-07 16:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2828?force=true HTTP/1.1" 200 None +2025-03-07 16:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2827?force=true HTTP/1.1" 200 None +2025-03-07 16:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2826?force=true HTTP/1.1" 200 None +2025-03-07 16:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2825?force=true HTTP/1.1" 200 None +2025-03-07 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2824?force=true HTTP/1.1" 200 None +2025-03-07 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2823?force=true HTTP/1.1" 200 None +2025-03-07 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2822?force=true HTTP/1.1" 200 None +2025-03-07 16:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2821?force=true HTTP/1.1" 200 None +2025-03-07 16:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2820?force=true HTTP/1.1" 200 None +2025-03-07 16:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2819?force=true HTTP/1.1" 200 None +2025-03-07 16:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2921 HTTP/1.1" 200 None +2025-03-07 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2922 HTTP/1.1" 200 None +2025-03-07 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2923 HTTP/1.1" 200 None +2025-03-07 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2924 HTTP/1.1" 200 None +2025-03-07 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2925 HTTP/1.1" 200 None +2025-03-07 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2926 HTTP/1.1" 200 None +2025-03-07 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2927 HTTP/1.1" 200 None +2025-03-07 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2928 HTTP/1.1" 200 None +2025-03-07 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2929 HTTP/1.1" 200 None +2025-03-07 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2930 HTTP/1.1" 200 None +2025-03-07 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2931 HTTP/1.1" 200 None +2025-03-07 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2932 HTTP/1.1" 200 None +2025-03-07 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2933 HTTP/1.1" 200 None +2025-03-07 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2934 HTTP/1.1" 200 None +2025-03-07 16:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2935 HTTP/1.1" 200 None +2025-03-07 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2936 HTTP/1.1" 200 None +2025-03-07 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2937 HTTP/1.1" 200 None +2025-03-07 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2938 HTTP/1.1" 200 None +2025-03-07 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2939 HTTP/1.1" 200 None +2025-03-07 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2940 HTTP/1.1" 200 None +2025-03-07 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2941 HTTP/1.1" 200 None +2025-03-07 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2942 HTTP/1.1" 200 None +2025-03-07 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2943 HTTP/1.1" 200 None +2025-03-07 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2944 HTTP/1.1" 200 None +2025-03-07 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2945 HTTP/1.1" 200 None +2025-03-07 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2946 HTTP/1.1" 200 None +2025-03-07 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2947 HTTP/1.1" 200 None +2025-03-07 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2948 HTTP/1.1" 200 None +2025-03-07 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2949 HTTP/1.1" 200 None +2025-03-07 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2950 HTTP/1.1" 200 None +2025-03-07 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2951 HTTP/1.1" 200 None +2025-03-07 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2952 HTTP/1.1" 200 None +2025-03-07 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2953 HTTP/1.1" 200 None +2025-03-07 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2954 HTTP/1.1" 200 None +2025-03-07 16:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2955 HTTP/1.1" 200 None +2025-03-07 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2956 HTTP/1.1" 200 None +2025-03-07 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2957 HTTP/1.1" 200 None +2025-03-07 16:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2958 HTTP/1.1" 200 None +2025-03-07 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2959 HTTP/1.1" 200 None +2025-03-07 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2960 HTTP/1.1" 200 None +2025-03-07 16:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2961 HTTP/1.1" 200 None +2025-03-07 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2962 HTTP/1.1" 200 None +2025-03-07 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2963 HTTP/1.1" 200 None +2025-03-07 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2964 HTTP/1.1" 200 None +2025-03-07 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2965 HTTP/1.1" 200 None +2025-03-07 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2966 HTTP/1.1" 200 None +2025-03-07 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2967 HTTP/1.1" 200 None +2025-03-07 16:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2968 HTTP/1.1" 200 None +2025-03-07 16:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2969 HTTP/1.1" 200 None +2025-03-07 16:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2970 HTTP/1.1" 200 None +2025-03-07 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2971 HTTP/1.1" 200 None +2025-03-07 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2972 HTTP/1.1" 200 None +2025-03-07 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2973 HTTP/1.1" 200 None +2025-03-07 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2974 HTTP/1.1" 200 None +2025-03-07 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2975 HTTP/1.1" 200 None +2025-03-07 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2976 HTTP/1.1" 200 None +2025-03-07 16:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2977 HTTP/1.1" 200 None +2025-03-07 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2978 HTTP/1.1" 200 None +2025-03-07 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2979 HTTP/1.1" 200 None +2025-03-07 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2980 HTTP/1.1" 200 None +2025-03-07 16:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2981 HTTP/1.1" 200 None +2025-03-07 16:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2982 HTTP/1.1" 200 None +2025-03-07 16:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2983 HTTP/1.1" 200 None +2025-03-07 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2984 HTTP/1.1" 200 None +2025-03-07 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2985 HTTP/1.1" 200 None +2025-03-07 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2986 HTTP/1.1" 200 None +2025-03-07 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2987 HTTP/1.1" 200 None +2025-03-07 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2988 HTTP/1.1" 200 None +2025-03-07 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2989 HTTP/1.1" 200 None +2025-03-07 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2990 HTTP/1.1" 200 None +2025-03-07 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2991 HTTP/1.1" 200 None +2025-03-07 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2992 HTTP/1.1" 200 None +2025-03-07 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2993 HTTP/1.1" 200 None +2025-03-07 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2994 HTTP/1.1" 200 None +2025-03-07 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2995 HTTP/1.1" 200 None +2025-03-07 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2996 HTTP/1.1" 200 None +2025-03-07 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2997 HTTP/1.1" 200 None +2025-03-07 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2998 HTTP/1.1" 200 None +2025-03-07 16:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/2999 HTTP/1.1" 200 None +2025-03-07 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3000 HTTP/1.1" 200 None +2025-03-07 16:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3001 HTTP/1.1" 200 None +2025-03-07 16:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3002 HTTP/1.1" 200 None +2025-03-07 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3003 HTTP/1.1" 200 None +2025-03-07 16:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3004 HTTP/1.1" 200 None +2025-03-07 16:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3005 HTTP/1.1" 200 None +2025-03-07 16:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3006 HTTP/1.1" 200 None +2025-03-07 16:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3007 HTTP/1.1" 200 None +2025-03-07 16:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3008 HTTP/1.1" 200 None +2025-03-07 16:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3009 HTTP/1.1" 200 None +2025-03-07 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3010 HTTP/1.1" 200 None +2025-03-07 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3011 HTTP/1.1" 200 None +2025-03-07 16:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3012 HTTP/1.1" 200 None +2025-03-07 16:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3013 HTTP/1.1" 200 None +2025-03-07 16:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3014 HTTP/1.1" 200 None +2025-03-07 16:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3015 HTTP/1.1" 200 None +2025-03-07 16:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3016 HTTP/1.1" 200 None +2025-03-07 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3017 HTTP/1.1" 200 None +2025-03-07 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3018 HTTP/1.1" 200 None +2025-03-07 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3019 HTTP/1.1" 200 None +2025-03-07 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3020 HTTP/1.1" 200 None +2025-03-07 16:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3021 HTTP/1.1" 200 None +2025-03-07 16:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3022 HTTP/1.1" 200 None +2025-03-07 16:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3023 HTTP/1.1" 200 None +2025-03-07 16:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3023?force=true HTTP/1.1" 200 None +2025-03-07 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3022?force=true HTTP/1.1" 200 None +2025-03-07 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3021?force=true HTTP/1.1" 200 None +2025-03-07 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3020?force=true HTTP/1.1" 200 None +2025-03-07 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3019?force=true HTTP/1.1" 200 None +2025-03-07 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3018?force=true HTTP/1.1" 200 None +2025-03-07 16:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3017?force=true HTTP/1.1" 200 None +2025-03-07 16:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3016?force=true HTTP/1.1" 200 None +2025-03-07 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3015?force=true HTTP/1.1" 200 None +2025-03-07 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3014?force=true HTTP/1.1" 200 None +2025-03-07 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3013?force=true HTTP/1.1" 200 None +2025-03-07 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3012?force=true HTTP/1.1" 200 None +2025-03-07 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3011?force=true HTTP/1.1" 200 None +2025-03-07 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3010?force=true HTTP/1.1" 200 None +2025-03-07 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3009?force=true HTTP/1.1" 200 None +2025-03-07 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3008?force=true HTTP/1.1" 200 None +2025-03-07 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3007?force=true HTTP/1.1" 200 None +2025-03-07 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3006?force=true HTTP/1.1" 200 None +2025-03-07 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3005?force=true HTTP/1.1" 200 None +2025-03-07 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3004?force=true HTTP/1.1" 200 None +2025-03-07 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3003?force=true HTTP/1.1" 200 None +2025-03-07 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3002?force=true HTTP/1.1" 200 None +2025-03-07 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3001?force=true HTTP/1.1" 200 None +2025-03-07 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3000?force=true HTTP/1.1" 200 None +2025-03-07 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2999?force=true HTTP/1.1" 200 None +2025-03-07 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2998?force=true HTTP/1.1" 200 None +2025-03-07 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2997?force=true HTTP/1.1" 200 None +2025-03-07 16:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2996?force=true HTTP/1.1" 200 None +2025-03-07 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2995?force=true HTTP/1.1" 200 None +2025-03-07 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2994?force=true HTTP/1.1" 200 None +2025-03-07 16:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2993?force=true HTTP/1.1" 200 None +2025-03-07 16:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2992?force=true HTTP/1.1" 200 None +2025-03-07 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2991?force=true HTTP/1.1" 200 None +2025-03-07 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2990?force=true HTTP/1.1" 200 None +2025-03-07 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2989?force=true HTTP/1.1" 200 None +2025-03-07 16:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2988?force=true HTTP/1.1" 200 None +2025-03-07 16:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2987?force=true HTTP/1.1" 200 None +2025-03-07 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2986?force=true HTTP/1.1" 200 None +2025-03-07 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2985?force=true HTTP/1.1" 200 None +2025-03-07 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2984?force=true HTTP/1.1" 200 None +2025-03-07 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2983?force=true HTTP/1.1" 200 None +2025-03-07 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2982?force=true HTTP/1.1" 200 None +2025-03-07 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2981?force=true HTTP/1.1" 200 None +2025-03-07 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2980?force=true HTTP/1.1" 200 None +2025-03-07 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2979?force=true HTTP/1.1" 200 None +2025-03-07 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2978?force=true HTTP/1.1" 200 None +2025-03-07 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2977?force=true HTTP/1.1" 200 None +2025-03-07 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2976?force=true HTTP/1.1" 200 None +2025-03-07 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2975?force=true HTTP/1.1" 200 None +2025-03-07 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2974?force=true HTTP/1.1" 200 None +2025-03-07 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2973?force=true HTTP/1.1" 200 None +2025-03-07 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2972?force=true HTTP/1.1" 200 None +2025-03-07 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2971?force=true HTTP/1.1" 200 None +2025-03-07 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2970?force=true HTTP/1.1" 200 None +2025-03-07 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2969?force=true HTTP/1.1" 200 None +2025-03-07 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2968?force=true HTTP/1.1" 200 None +2025-03-07 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2967?force=true HTTP/1.1" 200 None +2025-03-07 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2966?force=true HTTP/1.1" 200 None +2025-03-07 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2965?force=true HTTP/1.1" 200 None +2025-03-07 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2964?force=true HTTP/1.1" 200 None +2025-03-07 16:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2963?force=true HTTP/1.1" 200 None +2025-03-07 16:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2962?force=true HTTP/1.1" 200 None +2025-03-07 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2961?force=true HTTP/1.1" 200 None +2025-03-07 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2960?force=true HTTP/1.1" 200 None +2025-03-07 16:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2959?force=true HTTP/1.1" 200 None +2025-03-07 16:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2958?force=true HTTP/1.1" 200 None +2025-03-07 16:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2957?force=true HTTP/1.1" 200 None +2025-03-07 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2956?force=true HTTP/1.1" 200 None +2025-03-07 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2955?force=true HTTP/1.1" 200 None +2025-03-07 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2954?force=true HTTP/1.1" 200 None +2025-03-07 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2953?force=true HTTP/1.1" 200 None +2025-03-07 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2952?force=true HTTP/1.1" 200 None +2025-03-07 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2951?force=true HTTP/1.1" 200 None +2025-03-07 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2950?force=true HTTP/1.1" 200 None +2025-03-07 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2949?force=true HTTP/1.1" 200 None +2025-03-07 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2948?force=true HTTP/1.1" 200 None +2025-03-07 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2947?force=true HTTP/1.1" 200 None +2025-03-07 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2946?force=true HTTP/1.1" 200 None +2025-03-07 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2945?force=true HTTP/1.1" 200 None +2025-03-07 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2944?force=true HTTP/1.1" 200 None +2025-03-07 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2943?force=true HTTP/1.1" 200 None +2025-03-07 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2942?force=true HTTP/1.1" 200 None +2025-03-07 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2941?force=true HTTP/1.1" 200 None +2025-03-07 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2940?force=true HTTP/1.1" 200 None +2025-03-07 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2939?force=true HTTP/1.1" 200 None +2025-03-07 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2938?force=true HTTP/1.1" 200 None +2025-03-07 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2937?force=true HTTP/1.1" 200 None +2025-03-07 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2936?force=true HTTP/1.1" 200 None +2025-03-07 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2935?force=true HTTP/1.1" 200 None +2025-03-07 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2934?force=true HTTP/1.1" 200 None +2025-03-07 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2933?force=true HTTP/1.1" 200 None +2025-03-07 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2932?force=true HTTP/1.1" 200 None +2025-03-07 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2931?force=true HTTP/1.1" 200 None +2025-03-07 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2930?force=true HTTP/1.1" 200 None +2025-03-07 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2929?force=true HTTP/1.1" 200 None +2025-03-07 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2928?force=true HTTP/1.1" 200 None +2025-03-07 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2927?force=true HTTP/1.1" 200 None +2025-03-07 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2926?force=true HTTP/1.1" 200 None +2025-03-07 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2925?force=true HTTP/1.1" 200 None +2025-03-07 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2924?force=true HTTP/1.1" 200 None +2025-03-07 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2923?force=true HTTP/1.1" 200 None +2025-03-07 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2922?force=true HTTP/1.1" 200 None +2025-03-07 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/2921?force=true HTTP/1.1" 200 None +2025-03-07 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3024 HTTP/1.1" 200 None +2025-03-07 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3025 HTTP/1.1" 200 None +2025-03-07 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3026 HTTP/1.1" 200 None +2025-03-07 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3027 HTTP/1.1" 200 None +2025-03-07 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3028 HTTP/1.1" 200 None +2025-03-07 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3029 HTTP/1.1" 200 None +2025-03-07 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3030 HTTP/1.1" 200 None +2025-03-07 16:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3031 HTTP/1.1" 200 None +2025-03-07 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3032 HTTP/1.1" 200 None +2025-03-07 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3033 HTTP/1.1" 200 None +2025-03-07 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3034 HTTP/1.1" 200 None +2025-03-07 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3035 HTTP/1.1" 200 None +2025-03-07 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3036 HTTP/1.1" 200 None +2025-03-07 16:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3037 HTTP/1.1" 200 None +2025-03-07 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3038 HTTP/1.1" 200 None +2025-03-07 16:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3039 HTTP/1.1" 200 None +2025-03-07 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3040 HTTP/1.1" 200 None +2025-03-07 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3041 HTTP/1.1" 200 None +2025-03-07 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3042 HTTP/1.1" 200 None +2025-03-07 16:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3043 HTTP/1.1" 200 None +2025-03-07 16:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3044 HTTP/1.1" 200 None +2025-03-07 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3045 HTTP/1.1" 200 None +2025-03-07 16:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3046 HTTP/1.1" 200 None +2025-03-07 16:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3047 HTTP/1.1" 200 None +2025-03-07 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3048 HTTP/1.1" 200 None +2025-03-07 16:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3049 HTTP/1.1" 200 None +2025-03-07 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3050 HTTP/1.1" 200 None +2025-03-07 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3051 HTTP/1.1" 200 None +2025-03-07 16:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3052 HTTP/1.1" 200 None +2025-03-07 16:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3053 HTTP/1.1" 200 None +2025-03-07 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3054 HTTP/1.1" 200 None +2025-03-07 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3055 HTTP/1.1" 200 None +2025-03-07 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3056 HTTP/1.1" 200 None +2025-03-07 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3057 HTTP/1.1" 200 None +2025-03-07 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3058 HTTP/1.1" 200 None +2025-03-07 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3059 HTTP/1.1" 200 None +2025-03-07 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3060 HTTP/1.1" 200 None +2025-03-07 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3061 HTTP/1.1" 200 None +2025-03-07 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3062 HTTP/1.1" 200 None +2025-03-07 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3063 HTTP/1.1" 200 None +2025-03-07 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3064 HTTP/1.1" 200 None +2025-03-07 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3065 HTTP/1.1" 200 None +2025-03-07 16:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3066 HTTP/1.1" 200 None +2025-03-07 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3067 HTTP/1.1" 200 None +2025-03-07 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3068 HTTP/1.1" 200 None +2025-03-07 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3069 HTTP/1.1" 200 None +2025-03-07 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3070 HTTP/1.1" 200 None +2025-03-07 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3071 HTTP/1.1" 200 None +2025-03-07 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3072 HTTP/1.1" 200 None +2025-03-07 16:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3073 HTTP/1.1" 200 None +2025-03-07 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3074 HTTP/1.1" 200 None +2025-03-07 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3075 HTTP/1.1" 200 None +2025-03-07 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3076 HTTP/1.1" 200 None +2025-03-07 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3077 HTTP/1.1" 200 None +2025-03-07 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3078 HTTP/1.1" 200 None +2025-03-07 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3079 HTTP/1.1" 200 None +2025-03-07 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3080 HTTP/1.1" 200 None +2025-03-07 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3081 HTTP/1.1" 200 None +2025-03-07 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3082 HTTP/1.1" 200 None +2025-03-07 16:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3083 HTTP/1.1" 200 None +2025-03-07 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3084 HTTP/1.1" 200 None +2025-03-07 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3085 HTTP/1.1" 200 None +2025-03-07 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3086 HTTP/1.1" 200 None +2025-03-07 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3087 HTTP/1.1" 200 None +2025-03-07 16:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3088 HTTP/1.1" 200 None +2025-03-07 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3089 HTTP/1.1" 200 None +2025-03-07 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3090 HTTP/1.1" 200 None +2025-03-07 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3091 HTTP/1.1" 200 None +2025-03-07 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3092 HTTP/1.1" 200 None +2025-03-07 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3093 HTTP/1.1" 200 None +2025-03-07 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3094 HTTP/1.1" 200 None +2025-03-07 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3095 HTTP/1.1" 200 None +2025-03-07 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3096 HTTP/1.1" 200 None +2025-03-07 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3097 HTTP/1.1" 200 None +2025-03-07 16:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3098 HTTP/1.1" 200 None +2025-03-07 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3099 HTTP/1.1" 200 None +2025-03-07 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3100 HTTP/1.1" 200 None +2025-03-07 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3101 HTTP/1.1" 200 None +2025-03-07 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3102 HTTP/1.1" 200 None +2025-03-07 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3103 HTTP/1.1" 200 None +2025-03-07 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3104 HTTP/1.1" 200 None +2025-03-07 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3105 HTTP/1.1" 200 None +2025-03-07 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3106 HTTP/1.1" 200 None +2025-03-07 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3107 HTTP/1.1" 200 None +2025-03-07 16:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3108 HTTP/1.1" 200 None +2025-03-07 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3109 HTTP/1.1" 200 None +2025-03-07 16:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3110 HTTP/1.1" 200 None +2025-03-07 16:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3111 HTTP/1.1" 200 None +2025-03-07 16:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3112 HTTP/1.1" 200 None +2025-03-07 16:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3113 HTTP/1.1" 200 None +2025-03-07 16:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3114 HTTP/1.1" 200 None +2025-03-07 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3115 HTTP/1.1" 200 None +2025-03-07 16:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3116 HTTP/1.1" 200 None +2025-03-07 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3117 HTTP/1.1" 200 None +2025-03-07 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3118 HTTP/1.1" 200 None +2025-03-07 16:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3119 HTTP/1.1" 200 None +2025-03-07 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3120 HTTP/1.1" 200 None +2025-03-07 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3121 HTTP/1.1" 200 None +2025-03-07 16:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3122 HTTP/1.1" 200 None +2025-03-07 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3123 HTTP/1.1" 200 None +2025-03-07 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3124 HTTP/1.1" 200 None +2025-03-07 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3125 HTTP/1.1" 200 None +2025-03-07 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3126 HTTP/1.1" 200 None +2025-03-07 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3127 HTTP/1.1" 200 None +2025-03-07 16:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3128 HTTP/1.1" 200 None +2025-03-07 16:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3129 HTTP/1.1" 200 None +2025-03-07 16:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3130 HTTP/1.1" 200 None +2025-03-07 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3131 HTTP/1.1" 200 None +2025-03-07 16:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3132 HTTP/1.1" 200 None +2025-03-07 16:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3133 HTTP/1.1" 200 None +2025-03-07 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3134 HTTP/1.1" 200 None +2025-03-07 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3135 HTTP/1.1" 200 None +2025-03-07 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3136 HTTP/1.1" 200 None +2025-03-07 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3137 HTTP/1.1" 200 None +2025-03-07 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3138 HTTP/1.1" 200 None +2025-03-07 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3139 HTTP/1.1" 200 None +2025-03-07 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3140 HTTP/1.1" 200 None +2025-03-07 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3141 HTTP/1.1" 200 None +2025-03-07 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3142 HTTP/1.1" 200 None +2025-03-07 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3143 HTTP/1.1" 200 None +2025-03-07 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3144 HTTP/1.1" 200 None +2025-03-07 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3145 HTTP/1.1" 200 None +2025-03-07 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3146 HTTP/1.1" 200 None +2025-03-07 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3147 HTTP/1.1" 200 None +2025-03-07 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3148 HTTP/1.1" 200 None +2025-03-07 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3149 HTTP/1.1" 200 None +2025-03-07 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3150 HTTP/1.1" 200 None +2025-03-07 16:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3151 HTTP/1.1" 200 None +2025-03-07 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3152 HTTP/1.1" 200 None +2025-03-07 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3153 HTTP/1.1" 200 None +2025-03-07 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3154 HTTP/1.1" 200 None +2025-03-07 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3155 HTTP/1.1" 200 None +2025-03-07 16:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3155?force=true HTTP/1.1" 200 None +2025-03-07 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3154?force=true HTTP/1.1" 200 None +2025-03-07 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3153?force=true HTTP/1.1" 200 None +2025-03-07 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3152?force=true HTTP/1.1" 200 None +2025-03-07 16:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3151?force=true HTTP/1.1" 200 None +2025-03-07 16:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3150?force=true HTTP/1.1" 200 None +2025-03-07 16:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3149?force=true HTTP/1.1" 200 None +2025-03-07 16:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3148?force=true HTTP/1.1" 200 None +2025-03-07 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3147?force=true HTTP/1.1" 200 None +2025-03-07 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3146?force=true HTTP/1.1" 200 None +2025-03-07 16:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3145?force=true HTTP/1.1" 200 None +2025-03-07 16:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3144?force=true HTTP/1.1" 200 None +2025-03-07 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3143?force=true HTTP/1.1" 200 None +2025-03-07 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3142?force=true HTTP/1.1" 200 None +2025-03-07 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3141?force=true HTTP/1.1" 200 None +2025-03-07 16:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3140?force=true HTTP/1.1" 200 None +2025-03-07 16:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3139?force=true HTTP/1.1" 200 None +2025-03-07 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3138?force=true HTTP/1.1" 200 None +2025-03-07 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3137?force=true HTTP/1.1" 200 None +2025-03-07 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3136?force=true HTTP/1.1" 200 None +2025-03-07 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3135?force=true HTTP/1.1" 200 None +2025-03-07 16:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3134?force=true HTTP/1.1" 200 None +2025-03-07 16:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3133?force=true HTTP/1.1" 200 None +2025-03-07 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3132?force=true HTTP/1.1" 200 None +2025-03-07 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3131?force=true HTTP/1.1" 200 None +2025-03-07 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3130?force=true HTTP/1.1" 200 None +2025-03-07 16:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3129?force=true HTTP/1.1" 200 None +2025-03-07 16:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3128?force=true HTTP/1.1" 200 None +2025-03-07 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3127?force=true HTTP/1.1" 200 None +2025-03-07 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3126?force=true HTTP/1.1" 200 None +2025-03-07 16:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3125?force=true HTTP/1.1" 200 None +2025-03-07 16:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3124?force=true HTTP/1.1" 200 None +2025-03-07 16:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3123?force=true HTTP/1.1" 200 None +2025-03-07 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3122?force=true HTTP/1.1" 200 None +2025-03-07 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3121?force=true HTTP/1.1" 200 None +2025-03-07 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3120?force=true HTTP/1.1" 200 None +2025-03-07 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3119?force=true HTTP/1.1" 200 None +2025-03-07 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3118?force=true HTTP/1.1" 200 None +2025-03-07 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3117?force=true HTTP/1.1" 200 None +2025-03-07 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3116?force=true HTTP/1.1" 200 None +2025-03-07 16:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3115?force=true HTTP/1.1" 200 None +2025-03-07 16:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3114?force=true HTTP/1.1" 200 None +2025-03-07 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3113?force=true HTTP/1.1" 200 None +2025-03-07 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3112?force=true HTTP/1.1" 200 None +2025-03-07 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3111?force=true HTTP/1.1" 200 None +2025-03-07 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3110?force=true HTTP/1.1" 200 None +2025-03-07 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3109?force=true HTTP/1.1" 200 None +2025-03-07 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3108?force=true HTTP/1.1" 200 None +2025-03-07 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3107?force=true HTTP/1.1" 200 None +2025-03-07 16:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3106?force=true HTTP/1.1" 200 None +2025-03-07 16:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3105?force=true HTTP/1.1" 200 None +2025-03-07 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3104?force=true HTTP/1.1" 200 None +2025-03-07 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3103?force=true HTTP/1.1" 200 None +2025-03-07 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3102?force=true HTTP/1.1" 200 None +2025-03-07 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3101?force=true HTTP/1.1" 200 None +2025-03-07 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3100?force=true HTTP/1.1" 200 None +2025-03-07 16:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3099?force=true HTTP/1.1" 200 None +2025-03-07 16:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3098?force=true HTTP/1.1" 200 None +2025-03-07 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3097?force=true HTTP/1.1" 200 None +2025-03-07 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3096?force=true HTTP/1.1" 200 None +2025-03-07 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3095?force=true HTTP/1.1" 200 None +2025-03-07 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3094?force=true HTTP/1.1" 200 None +2025-03-07 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3093?force=true HTTP/1.1" 200 None +2025-03-07 16:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3092?force=true HTTP/1.1" 200 None +2025-03-07 16:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3091?force=true HTTP/1.1" 200 None +2025-03-07 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3090?force=true HTTP/1.1" 200 None +2025-03-07 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3089?force=true HTTP/1.1" 200 None +2025-03-07 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3088?force=true HTTP/1.1" 200 None +2025-03-07 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3087?force=true HTTP/1.1" 200 None +2025-03-07 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3086?force=true HTTP/1.1" 200 None +2025-03-07 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3085?force=true HTTP/1.1" 200 None +2025-03-07 16:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3084?force=true HTTP/1.1" 200 None +2025-03-07 16:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3083?force=true HTTP/1.1" 200 None +2025-03-07 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3082?force=true HTTP/1.1" 200 None +2025-03-07 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3081?force=true HTTP/1.1" 200 None +2025-03-07 16:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3080?force=true HTTP/1.1" 200 None +2025-03-07 16:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3079?force=true HTTP/1.1" 200 None +2025-03-07 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3078?force=true HTTP/1.1" 200 None +2025-03-07 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3077?force=true HTTP/1.1" 200 None +2025-03-07 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3076?force=true HTTP/1.1" 200 None +2025-03-07 16:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3075?force=true HTTP/1.1" 200 None +2025-03-07 16:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3074?force=true HTTP/1.1" 200 None +2025-03-07 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3073?force=true HTTP/1.1" 200 None +2025-03-07 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3072?force=true HTTP/1.1" 200 None +2025-03-07 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3071?force=true HTTP/1.1" 200 None +2025-03-07 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3070?force=true HTTP/1.1" 200 None +2025-03-07 16:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3069?force=true HTTP/1.1" 200 None +2025-03-07 16:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3068?force=true HTTP/1.1" 200 None +2025-03-07 16:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3067?force=true HTTP/1.1" 200 None +2025-03-07 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3066?force=true HTTP/1.1" 200 None +2025-03-07 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3065?force=true HTTP/1.1" 200 None +2025-03-07 16:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3064?force=true HTTP/1.1" 200 None +2025-03-07 16:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3063?force=true HTTP/1.1" 200 None +2025-03-07 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3062?force=true HTTP/1.1" 200 None +2025-03-07 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3061?force=true HTTP/1.1" 200 None +2025-03-07 16:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3060?force=true HTTP/1.1" 200 None +2025-03-07 16:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3059?force=true HTTP/1.1" 200 None +2025-03-07 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3058?force=true HTTP/1.1" 200 None +2025-03-07 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3057?force=true HTTP/1.1" 200 None +2025-03-07 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3056?force=true HTTP/1.1" 200 None +2025-03-07 16:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3055?force=true HTTP/1.1" 200 None +2025-03-07 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3054?force=true HTTP/1.1" 200 None +2025-03-07 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3053?force=true HTTP/1.1" 200 None +2025-03-07 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3052?force=true HTTP/1.1" 200 None +2025-03-07 16:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3051?force=true HTTP/1.1" 200 None +2025-03-07 16:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3050?force=true HTTP/1.1" 200 None +2025-03-07 16:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3049?force=true HTTP/1.1" 200 None +2025-03-07 16:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3048?force=true HTTP/1.1" 200 None +2025-03-07 16:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3047?force=true HTTP/1.1" 200 None +2025-03-07 16:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3046?force=true HTTP/1.1" 200 None +2025-03-07 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3045?force=true HTTP/1.1" 200 None +2025-03-07 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3044?force=true HTTP/1.1" 200 None +2025-03-07 16:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3043?force=true HTTP/1.1" 200 None +2025-03-07 16:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3042?force=true HTTP/1.1" 200 None +2025-03-07 16:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3041?force=true HTTP/1.1" 200 None +2025-03-07 16:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3040?force=true HTTP/1.1" 200 None +2025-03-07 16:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3039?force=true HTTP/1.1" 200 None +2025-03-07 16:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3038?force=true HTTP/1.1" 200 None +2025-03-07 16:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3037?force=true HTTP/1.1" 200 None +2025-03-07 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3036?force=true HTTP/1.1" 200 None +2025-03-07 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3035?force=true HTTP/1.1" 200 None +2025-03-07 16:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3034?force=true HTTP/1.1" 200 None +2025-03-07 16:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3033?force=true HTTP/1.1" 200 None +2025-03-07 16:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3032?force=true HTTP/1.1" 200 None +2025-03-07 16:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3031?force=true HTTP/1.1" 200 None +2025-03-07 16:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3030?force=true HTTP/1.1" 200 None +2025-03-07 16:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3029?force=true HTTP/1.1" 200 None +2025-03-07 16:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3028?force=true HTTP/1.1" 200 None +2025-03-07 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3027?force=true HTTP/1.1" 200 None +2025-03-07 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3026?force=true HTTP/1.1" 200 None +2025-03-07 16:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3025?force=true HTTP/1.1" 200 None +2025-03-07 16:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3024?force=true HTTP/1.1" 200 None +2025-03-07 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3156 HTTP/1.1" 200 None +2025-03-07 16:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3157 HTTP/1.1" 200 None +2025-03-07 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3158 HTTP/1.1" 200 None +2025-03-07 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3159 HTTP/1.1" 200 None +2025-03-07 16:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3160 HTTP/1.1" 200 None +2025-03-07 16:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3161 HTTP/1.1" 200 None +2025-03-07 16:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3162 HTTP/1.1" 200 None +2025-03-07 16:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3163 HTTP/1.1" 200 None +2025-03-07 16:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3164 HTTP/1.1" 200 None +2025-03-07 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3165 HTTP/1.1" 200 None +2025-03-07 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3166 HTTP/1.1" 200 None +2025-03-07 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3167 HTTP/1.1" 200 None +2025-03-07 16:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3168 HTTP/1.1" 200 None +2025-03-07 16:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3169 HTTP/1.1" 200 None +2025-03-07 16:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3170 HTTP/1.1" 200 None +2025-03-07 16:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3171 HTTP/1.1" 200 None +2025-03-07 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3172 HTTP/1.1" 200 None +2025-03-07 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3173 HTTP/1.1" 200 None +2025-03-07 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3174 HTTP/1.1" 200 None +2025-03-07 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3175 HTTP/1.1" 200 None +2025-03-07 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3176 HTTP/1.1" 200 None +2025-03-07 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3177 HTTP/1.1" 200 None +2025-03-07 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3178 HTTP/1.1" 200 None +2025-03-07 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3179 HTTP/1.1" 200 None +2025-03-07 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3180 HTTP/1.1" 200 None +2025-03-07 16:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3181 HTTP/1.1" 200 None +2025-03-07 16:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3182 HTTP/1.1" 200 None +2025-03-07 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3183 HTTP/1.1" 200 None +2025-03-07 16:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3184 HTTP/1.1" 200 None +2025-03-07 16:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3185 HTTP/1.1" 200 None +2025-03-07 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3186 HTTP/1.1" 200 None +2025-03-07 16:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3187 HTTP/1.1" 200 None +2025-03-07 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3188 HTTP/1.1" 200 None +2025-03-07 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3189 HTTP/1.1" 200 None +2025-03-07 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3190 HTTP/1.1" 200 None +2025-03-07 16:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3191 HTTP/1.1" 200 None +2025-03-07 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3192 HTTP/1.1" 200 None +2025-03-07 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3193 HTTP/1.1" 200 None +2025-03-07 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3194 HTTP/1.1" 200 None +2025-03-07 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3195 HTTP/1.1" 200 None +2025-03-07 16:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3196 HTTP/1.1" 200 None +2025-03-07 16:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3197 HTTP/1.1" 200 None +2025-03-07 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3198 HTTP/1.1" 200 None +2025-03-07 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3199 HTTP/1.1" 200 None +2025-03-07 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3200 HTTP/1.1" 200 None +2025-03-07 16:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3201 HTTP/1.1" 200 None +2025-03-07 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3202 HTTP/1.1" 200 None +2025-03-07 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3203 HTTP/1.1" 200 None +2025-03-07 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3204 HTTP/1.1" 200 None +2025-03-07 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3205 HTTP/1.1" 200 None +2025-03-07 16:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3206 HTTP/1.1" 200 None +2025-03-07 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3207 HTTP/1.1" 200 None +2025-03-07 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3208 HTTP/1.1" 200 None +2025-03-07 16:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3209 HTTP/1.1" 200 None +2025-03-07 16:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3210 HTTP/1.1" 200 None +2025-03-07 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3211 HTTP/1.1" 200 None +2025-03-07 16:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3212 HTTP/1.1" 200 None +2025-03-07 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3213 HTTP/1.1" 200 None +2025-03-07 16:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3214 HTTP/1.1" 200 None +2025-03-07 16:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3215 HTTP/1.1" 200 None +2025-03-07 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3216 HTTP/1.1" 200 None +2025-03-07 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3217 HTTP/1.1" 200 None +2025-03-07 16:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3218 HTTP/1.1" 200 None +2025-03-07 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3219 HTTP/1.1" 200 None +2025-03-07 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3220 HTTP/1.1" 200 None +2025-03-07 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3221 HTTP/1.1" 200 None +2025-03-07 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3222 HTTP/1.1" 200 None +2025-03-07 16:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3223 HTTP/1.1" 200 None +2025-03-07 16:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3224 HTTP/1.1" 200 None +2025-03-07 16:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3225 HTTP/1.1" 200 None +2025-03-07 16:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3226 HTTP/1.1" 200 None +2025-03-07 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3227 HTTP/1.1" 200 None +2025-03-07 16:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3228 HTTP/1.1" 200 None +2025-03-07 16:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3229 HTTP/1.1" 200 None +2025-03-07 16:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3230 HTTP/1.1" 200 None +2025-03-07 16:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3231 HTTP/1.1" 200 None +2025-03-07 16:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3232 HTTP/1.1" 200 None +2025-03-07 16:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3233 HTTP/1.1" 200 None +2025-03-07 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3234 HTTP/1.1" 200 None +2025-03-07 16:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3235 HTTP/1.1" 200 None +2025-03-07 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3236 HTTP/1.1" 200 None +2025-03-07 16:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3237 HTTP/1.1" 200 None +2025-03-07 16:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3238 HTTP/1.1" 200 None +2025-03-07 16:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3239 HTTP/1.1" 200 None +2025-03-07 16:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3240 HTTP/1.1" 200 None +2025-03-07 16:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3241 HTTP/1.1" 200 None +2025-03-07 16:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3242 HTTP/1.1" 200 None +2025-03-07 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3243 HTTP/1.1" 200 None +2025-03-07 16:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3244 HTTP/1.1" 200 None +2025-03-07 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3245 HTTP/1.1" 200 None +2025-03-07 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3246 HTTP/1.1" 200 None +2025-03-07 16:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3247 HTTP/1.1" 200 None +2025-03-07 16:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3248 HTTP/1.1" 200 None +2025-03-07 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3249 HTTP/1.1" 200 None +2025-03-07 16:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3250 HTTP/1.1" 200 None +2025-03-07 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3251 HTTP/1.1" 200 None +2025-03-07 16:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3252 HTTP/1.1" 200 None +2025-03-07 16:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3253 HTTP/1.1" 200 None +2025-03-07 16:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3254 HTTP/1.1" 200 None +2025-03-07 16:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3255 HTTP/1.1" 200 None +2025-03-07 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 16:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3256 HTTP/1.1" 200 None +2025-03-07 16:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3257 HTTP/1.1" 200 None +2025-03-07 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3258 HTTP/1.1" 200 None +2025-03-07 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3259 HTTP/1.1" 200 None +2025-03-07 16:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3260 HTTP/1.1" 200 None +2025-03-07 16:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3261 HTTP/1.1" 200 None +2025-03-07 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3262 HTTP/1.1" 200 None +2025-03-07 16:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3263 HTTP/1.1" 200 None +2025-03-07 16:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3264 HTTP/1.1" 200 None +2025-03-07 16:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3265 HTTP/1.1" 200 None +2025-03-07 16:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3266 HTTP/1.1" 200 None +2025-03-07 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3267 HTTP/1.1" 200 None +2025-03-07 16:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3268 HTTP/1.1" 200 None +2025-03-07 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3269 HTTP/1.1" 200 None +2025-03-07 16:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3270 HTTP/1.1" 200 None +2025-03-07 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3271 HTTP/1.1" 200 None +2025-03-07 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3272 HTTP/1.1" 200 None +2025-03-07 16:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3273 HTTP/1.1" 200 None +2025-03-07 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3274 HTTP/1.1" 200 None +2025-03-07 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3275 HTTP/1.1" 200 None +2025-03-07 16:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3276 HTTP/1.1" 200 None +2025-03-07 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3277 HTTP/1.1" 200 None +2025-03-07 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3278 HTTP/1.1" 200 None +2025-03-07 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3279 HTTP/1.1" 200 None +2025-03-07 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3280 HTTP/1.1" 200 None +2025-03-07 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3281 HTTP/1.1" 200 None +2025-03-07 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3282 HTTP/1.1" 200 None +2025-03-07 17:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3283 HTTP/1.1" 200 None +2025-03-07 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3284 HTTP/1.1" 200 None +2025-03-07 17:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3285 HTTP/1.1" 200 None +2025-03-07 17:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3286 HTTP/1.1" 200 None +2025-03-07 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3287 HTTP/1.1" 200 None +2025-03-07 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3287?force=true HTTP/1.1" 200 None +2025-03-07 17:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3286?force=true HTTP/1.1" 200 None +2025-03-07 17:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3285?force=true HTTP/1.1" 200 None +2025-03-07 17:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3284?force=true HTTP/1.1" 200 None +2025-03-07 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3283?force=true HTTP/1.1" 200 None +2025-03-07 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3282?force=true HTTP/1.1" 200 None +2025-03-07 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3281?force=true HTTP/1.1" 200 None +2025-03-07 17:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3280?force=true HTTP/1.1" 200 None +2025-03-07 17:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3279?force=true HTTP/1.1" 200 None +2025-03-07 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3278?force=true HTTP/1.1" 200 None +2025-03-07 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3277?force=true HTTP/1.1" 200 None +2025-03-07 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3276?force=true HTTP/1.1" 200 None +2025-03-07 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3275?force=true HTTP/1.1" 200 None +2025-03-07 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3274?force=true HTTP/1.1" 200 None +2025-03-07 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3273?force=true HTTP/1.1" 200 None +2025-03-07 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3272?force=true HTTP/1.1" 200 None +2025-03-07 17:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3271?force=true HTTP/1.1" 200 None +2025-03-07 17:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3270?force=true HTTP/1.1" 200 None +2025-03-07 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3269?force=true HTTP/1.1" 200 None +2025-03-07 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3268?force=true HTTP/1.1" 200 None +2025-03-07 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3267?force=true HTTP/1.1" 200 None +2025-03-07 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3266?force=true HTTP/1.1" 200 None +2025-03-07 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3265?force=true HTTP/1.1" 200 None +2025-03-07 17:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3264?force=true HTTP/1.1" 200 None +2025-03-07 17:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3263?force=true HTTP/1.1" 200 None +2025-03-07 17:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3262?force=true HTTP/1.1" 200 None +2025-03-07 17:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3261?force=true HTTP/1.1" 200 None +2025-03-07 17:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3260?force=true HTTP/1.1" 200 None +2025-03-07 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3259?force=true HTTP/1.1" 200 None +2025-03-07 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3258?force=true HTTP/1.1" 200 None +2025-03-07 17:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3257?force=true HTTP/1.1" 200 None +2025-03-07 17:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3256?force=true HTTP/1.1" 200 None +2025-03-07 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3255?force=true HTTP/1.1" 200 None +2025-03-07 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3254?force=true HTTP/1.1" 200 None +2025-03-07 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3253?force=true HTTP/1.1" 200 None +2025-03-07 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3252?force=true HTTP/1.1" 200 None +2025-03-07 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3251?force=true HTTP/1.1" 200 None +2025-03-07 17:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3250?force=true HTTP/1.1" 200 None +2025-03-07 17:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3249?force=true HTTP/1.1" 200 None +2025-03-07 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3248?force=true HTTP/1.1" 200 None +2025-03-07 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3247?force=true HTTP/1.1" 200 None +2025-03-07 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3246?force=true HTTP/1.1" 200 None +2025-03-07 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3245?force=true HTTP/1.1" 200 None +2025-03-07 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3244?force=true HTTP/1.1" 200 None +2025-03-07 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3243?force=true HTTP/1.1" 200 None +2025-03-07 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3242?force=true HTTP/1.1" 200 None +2025-03-07 17:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3241?force=true HTTP/1.1" 200 None +2025-03-07 17:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3240?force=true HTTP/1.1" 200 None +2025-03-07 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3239?force=true HTTP/1.1" 200 None +2025-03-07 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3238?force=true HTTP/1.1" 200 None +2025-03-07 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3237?force=true HTTP/1.1" 200 None +2025-03-07 17:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3236?force=true HTTP/1.1" 200 None +2025-03-07 17:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3235?force=true HTTP/1.1" 200 None +2025-03-07 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3234?force=true HTTP/1.1" 200 None +2025-03-07 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3233?force=true HTTP/1.1" 200 None +2025-03-07 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3232?force=true HTTP/1.1" 200 None +2025-03-07 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3231?force=true HTTP/1.1" 200 None +2025-03-07 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3230?force=true HTTP/1.1" 200 None +2025-03-07 17:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3229?force=true HTTP/1.1" 200 None +2025-03-07 17:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3228?force=true HTTP/1.1" 200 None +2025-03-07 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3227?force=true HTTP/1.1" 200 None +2025-03-07 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3226?force=true HTTP/1.1" 200 None +2025-03-07 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3225?force=true HTTP/1.1" 200 None +2025-03-07 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3224?force=true HTTP/1.1" 200 None +2025-03-07 17:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3223?force=true HTTP/1.1" 200 None +2025-03-07 17:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3222?force=true HTTP/1.1" 200 None +2025-03-07 17:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3221?force=true HTTP/1.1" 200 None +2025-03-07 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3220?force=true HTTP/1.1" 200 None +2025-03-07 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3219?force=true HTTP/1.1" 200 None +2025-03-07 17:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3218?force=true HTTP/1.1" 200 None +2025-03-07 17:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3217?force=true HTTP/1.1" 200 None +2025-03-07 17:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3216?force=true HTTP/1.1" 200 None +2025-03-07 17:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3215?force=true HTTP/1.1" 200 None +2025-03-07 17:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3214?force=true HTTP/1.1" 200 None +2025-03-07 17:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3213?force=true HTTP/1.1" 200 None +2025-03-07 17:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3212?force=true HTTP/1.1" 200 None +2025-03-07 17:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3211?force=true HTTP/1.1" 200 None +2025-03-07 17:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3210?force=true HTTP/1.1" 200 None +2025-03-07 17:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3209?force=true HTTP/1.1" 200 None +2025-03-07 17:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3208?force=true HTTP/1.1" 200 None +2025-03-07 17:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3207?force=true HTTP/1.1" 200 None +2025-03-07 17:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3206?force=true HTTP/1.1" 200 None +2025-03-07 17:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3205?force=true HTTP/1.1" 200 None +2025-03-07 17:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3204?force=true HTTP/1.1" 200 None +2025-03-07 17:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3203?force=true HTTP/1.1" 200 None +2025-03-07 17:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3202?force=true HTTP/1.1" 200 None +2025-03-07 17:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3201?force=true HTTP/1.1" 200 None +2025-03-07 17:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3200?force=true HTTP/1.1" 200 None +2025-03-07 17:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3199?force=true HTTP/1.1" 200 None +2025-03-07 17:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3198?force=true HTTP/1.1" 200 None +2025-03-07 17:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3197?force=true HTTP/1.1" 200 None +2025-03-07 17:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3196?force=true HTTP/1.1" 200 None +2025-03-07 17:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3195?force=true HTTP/1.1" 200 None +2025-03-07 17:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3194?force=true HTTP/1.1" 200 None +2025-03-07 17:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3193?force=true HTTP/1.1" 200 None +2025-03-07 17:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3192?force=true HTTP/1.1" 200 None +2025-03-07 17:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3191?force=true HTTP/1.1" 200 None +2025-03-07 17:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3190?force=true HTTP/1.1" 200 None +2025-03-07 17:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3189?force=true HTTP/1.1" 200 None +2025-03-07 17:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3188?force=true HTTP/1.1" 200 None +2025-03-07 17:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3187?force=true HTTP/1.1" 200 None +2025-03-07 17:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3186?force=true HTTP/1.1" 200 None +2025-03-07 17:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3185?force=true HTTP/1.1" 200 None +2025-03-07 17:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3184?force=true HTTP/1.1" 200 None +2025-03-07 17:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3183?force=true HTTP/1.1" 200 None +2025-03-07 17:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3182?force=true HTTP/1.1" 200 None +2025-03-07 17:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3181?force=true HTTP/1.1" 200 None +2025-03-07 17:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3180?force=true HTTP/1.1" 200 None +2025-03-07 17:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3179?force=true HTTP/1.1" 200 None +2025-03-07 17:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3178?force=true HTTP/1.1" 200 None +2025-03-07 17:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3177?force=true HTTP/1.1" 200 None +2025-03-07 17:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3176?force=true HTTP/1.1" 200 None +2025-03-07 17:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3175?force=true HTTP/1.1" 200 None +2025-03-07 17:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3174?force=true HTTP/1.1" 200 None +2025-03-07 17:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3173?force=true HTTP/1.1" 200 None +2025-03-07 17:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3172?force=true HTTP/1.1" 200 None +2025-03-07 17:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3171?force=true HTTP/1.1" 200 None +2025-03-07 17:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3170?force=true HTTP/1.1" 200 None +2025-03-07 17:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3169?force=true HTTP/1.1" 200 None +2025-03-07 17:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3168?force=true HTTP/1.1" 200 None +2025-03-07 17:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3167?force=true HTTP/1.1" 200 None +2025-03-07 17:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3166?force=true HTTP/1.1" 200 None +2025-03-07 17:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3165?force=true HTTP/1.1" 200 None +2025-03-07 17:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3164?force=true HTTP/1.1" 200 None +2025-03-07 17:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3163?force=true HTTP/1.1" 200 None +2025-03-07 17:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3162?force=true HTTP/1.1" 200 None +2025-03-07 17:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3161?force=true HTTP/1.1" 200 None +2025-03-07 17:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3160?force=true HTTP/1.1" 200 None +2025-03-07 17:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3159?force=true HTTP/1.1" 200 None +2025-03-07 17:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3158?force=true HTTP/1.1" 200 None +2025-03-07 17:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3157?force=true HTTP/1.1" 200 None +2025-03-07 17:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3156?force=true HTTP/1.1" 200 None +2025-03-07 17:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 17:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3288 HTTP/1.1" 200 None +2025-03-07 17:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3289 HTTP/1.1" 200 None +2025-03-07 17:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3290 HTTP/1.1" 200 None +2025-03-07 17:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3291 HTTP/1.1" 200 None +2025-03-07 17:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3292 HTTP/1.1" 200 None +2025-03-07 17:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3293 HTTP/1.1" 200 None +2025-03-07 17:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3294 HTTP/1.1" 200 None +2025-03-07 17:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3295 HTTP/1.1" 200 None +2025-03-07 17:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3296 HTTP/1.1" 200 None +2025-03-07 17:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3297 HTTP/1.1" 200 None +2025-03-07 17:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3298 HTTP/1.1" 200 None +2025-03-07 17:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3299 HTTP/1.1" 200 None +2025-03-07 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3300 HTTP/1.1" 200 None +2025-03-07 17:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3301 HTTP/1.1" 200 None +2025-03-07 17:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3302 HTTP/1.1" 200 None +2025-03-07 17:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3303 HTTP/1.1" 200 None +2025-03-07 17:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3304 HTTP/1.1" 200 None +2025-03-07 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3305 HTTP/1.1" 200 None +2025-03-07 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3306 HTTP/1.1" 200 None +2025-03-07 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3307 HTTP/1.1" 200 None +2025-03-07 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3308 HTTP/1.1" 200 None +2025-03-07 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3309 HTTP/1.1" 200 None +2025-03-07 17:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3310 HTTP/1.1" 200 None +2025-03-07 17:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3311 HTTP/1.1" 200 None +2025-03-07 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3312 HTTP/1.1" 200 None +2025-03-07 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3313 HTTP/1.1" 200 None +2025-03-07 17:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3314 HTTP/1.1" 200 None +2025-03-07 17:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3315 HTTP/1.1" 200 None +2025-03-07 17:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3316 HTTP/1.1" 200 None +2025-03-07 17:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3317 HTTP/1.1" 200 None +2025-03-07 17:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3318 HTTP/1.1" 200 None +2025-03-07 17:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3319 HTTP/1.1" 200 None +2025-03-07 17:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3320 HTTP/1.1" 200 None +2025-03-07 17:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3321 HTTP/1.1" 200 None +2025-03-07 17:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3322 HTTP/1.1" 200 None +2025-03-07 17:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3323 HTTP/1.1" 200 None +2025-03-07 17:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3324 HTTP/1.1" 200 None +2025-03-07 17:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3325 HTTP/1.1" 200 None +2025-03-07 17:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3326 HTTP/1.1" 200 None +2025-03-07 17:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3327 HTTP/1.1" 200 None +2025-03-07 17:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3328 HTTP/1.1" 200 None +2025-03-07 17:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3329 HTTP/1.1" 200 None +2025-03-07 17:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3330 HTTP/1.1" 200 None +2025-03-07 17:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3331 HTTP/1.1" 200 None +2025-03-07 17:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3332 HTTP/1.1" 200 None +2025-03-07 17:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3333 HTTP/1.1" 200 None +2025-03-07 17:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3334 HTTP/1.1" 200 None +2025-03-07 17:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3335 HTTP/1.1" 200 None +2025-03-07 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3336 HTTP/1.1" 200 None +2025-03-07 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3337 HTTP/1.1" 200 None +2025-03-07 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3338 HTTP/1.1" 200 None +2025-03-07 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3339 HTTP/1.1" 200 None +2025-03-07 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3340 HTTP/1.1" 200 None +2025-03-07 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3341 HTTP/1.1" 200 None +2025-03-07 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3342 HTTP/1.1" 200 None +2025-03-07 17:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3343 HTTP/1.1" 200 None +2025-03-07 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3344 HTTP/1.1" 200 None +2025-03-07 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3345 HTTP/1.1" 200 None +2025-03-07 17:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3346 HTTP/1.1" 200 None +2025-03-07 17:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3347 HTTP/1.1" 200 None +2025-03-07 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3348 HTTP/1.1" 200 None +2025-03-07 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3349 HTTP/1.1" 200 None +2025-03-07 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3350 HTTP/1.1" 200 None +2025-03-07 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3351 HTTP/1.1" 200 None +2025-03-07 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3352 HTTP/1.1" 200 None +2025-03-07 17:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3353 HTTP/1.1" 200 None +2025-03-07 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3354 HTTP/1.1" 200 None +2025-03-07 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3355 HTTP/1.1" 200 None +2025-03-07 17:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3356 HTTP/1.1" 200 None +2025-03-07 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3357 HTTP/1.1" 200 None +2025-03-07 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3358 HTTP/1.1" 200 None +2025-03-07 17:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3359 HTTP/1.1" 200 None +2025-03-07 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3360 HTTP/1.1" 200 None +2025-03-07 17:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3361 HTTP/1.1" 200 None +2025-03-07 17:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3362 HTTP/1.1" 200 None +2025-03-07 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3363 HTTP/1.1" 200 None +2025-03-07 17:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3364 HTTP/1.1" 200 None +2025-03-07 17:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3365 HTTP/1.1" 200 None +2025-03-07 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3366 HTTP/1.1" 200 None +2025-03-07 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3367 HTTP/1.1" 200 None +2025-03-07 17:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3368 HTTP/1.1" 200 None +2025-03-07 17:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3369 HTTP/1.1" 200 None +2025-03-07 17:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3370 HTTP/1.1" 200 None +2025-03-07 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3371 HTTP/1.1" 200 None +2025-03-07 17:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3372 HTTP/1.1" 200 None +2025-03-07 17:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3373 HTTP/1.1" 200 None +2025-03-07 17:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3374 HTTP/1.1" 200 None +2025-03-07 17:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3375 HTTP/1.1" 200 None +2025-03-07 17:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3376 HTTP/1.1" 200 None +2025-03-07 17:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3377 HTTP/1.1" 200 None +2025-03-07 17:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3378 HTTP/1.1" 200 None +2025-03-07 17:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3379 HTTP/1.1" 200 None +2025-03-07 17:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3380 HTTP/1.1" 200 None +2025-03-07 17:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3381 HTTP/1.1" 200 None +2025-03-07 17:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3382 HTTP/1.1" 200 None +2025-03-07 17:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3383 HTTP/1.1" 200 None +2025-03-07 17:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3384 HTTP/1.1" 200 None +2025-03-07 17:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3385 HTTP/1.1" 200 None +2025-03-07 17:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3386 HTTP/1.1" 200 None +2025-03-07 17:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3387 HTTP/1.1" 200 None +2025-03-07 17:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3388 HTTP/1.1" 200 None +2025-03-07 17:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3389 HTTP/1.1" 200 None +2025-03-07 17:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3390 HTTP/1.1" 200 None +2025-03-07 17:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3391 HTTP/1.1" 200 None +2025-03-07 17:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3392 HTTP/1.1" 200 None +2025-03-07 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3393 HTTP/1.1" 200 None +2025-03-07 17:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3394 HTTP/1.1" 200 None +2025-03-07 17:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3395 HTTP/1.1" 200 None +2025-03-07 17:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3396 HTTP/1.1" 200 None +2025-03-07 17:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3397 HTTP/1.1" 200 None +2025-03-07 17:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3398 HTTP/1.1" 200 None +2025-03-07 17:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3399 HTTP/1.1" 200 None +2025-03-07 17:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3400 HTTP/1.1" 200 None +2025-03-07 17:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3401 HTTP/1.1" 200 None +2025-03-07 17:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3402 HTTP/1.1" 200 None +2025-03-07 17:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3403 HTTP/1.1" 200 None +2025-03-07 17:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3404 HTTP/1.1" 200 None +2025-03-07 17:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3405 HTTP/1.1" 200 None +2025-03-07 17:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3406 HTTP/1.1" 200 None +2025-03-07 17:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3407 HTTP/1.1" 200 None +2025-03-07 17:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3408 HTTP/1.1" 200 None +2025-03-07 17:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3409 HTTP/1.1" 200 None +2025-03-07 17:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3410 HTTP/1.1" 200 None +2025-03-07 17:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3411 HTTP/1.1" 200 None +2025-03-07 17:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3412 HTTP/1.1" 200 None +2025-03-07 17:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3413 HTTP/1.1" 200 None +2025-03-07 17:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3414 HTTP/1.1" 200 None +2025-03-07 17:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3415 HTTP/1.1" 200 None +2025-03-07 17:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3416 HTTP/1.1" 200 None +2025-03-07 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3417 HTTP/1.1" 200 None +2025-03-07 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3418 HTTP/1.1" 200 None +2025-03-07 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3419 HTTP/1.1" 200 None +2025-03-07 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3420 HTTP/1.1" 200 None +2025-03-07 17:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3421 HTTP/1.1" 200 None +2025-03-07 17:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3422 HTTP/1.1" 200 None +2025-03-07 17:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3423 HTTP/1.1" 200 None +2025-03-07 17:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3424 HTTP/1.1" 200 None +2025-03-07 17:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3424?force=true HTTP/1.1" 200 None +2025-03-07 17:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3423?force=true HTTP/1.1" 200 None +2025-03-07 17:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3422?force=true HTTP/1.1" 200 None +2025-03-07 17:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3421?force=true HTTP/1.1" 200 None +2025-03-07 17:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3420?force=true HTTP/1.1" 200 None +2025-03-07 17:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3419?force=true HTTP/1.1" 200 None +2025-03-07 17:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3418?force=true HTTP/1.1" 200 None +2025-03-07 17:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3417?force=true HTTP/1.1" 200 None +2025-03-07 17:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3416?force=true HTTP/1.1" 200 None +2025-03-07 17:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3415?force=true HTTP/1.1" 200 None +2025-03-07 17:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3414?force=true HTTP/1.1" 200 None +2025-03-07 17:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3413?force=true HTTP/1.1" 200 None +2025-03-07 17:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3412?force=true HTTP/1.1" 200 None +2025-03-07 17:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3411?force=true HTTP/1.1" 200 None +2025-03-07 17:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3410?force=true HTTP/1.1" 200 None +2025-03-07 17:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3409?force=true HTTP/1.1" 200 None +2025-03-07 17:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3408?force=true HTTP/1.1" 200 None +2025-03-07 17:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3407?force=true HTTP/1.1" 200 None +2025-03-07 17:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3406?force=true HTTP/1.1" 200 None +2025-03-07 17:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3405?force=true HTTP/1.1" 200 None +2025-03-07 17:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3404?force=true HTTP/1.1" 200 None +2025-03-07 17:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3403?force=true HTTP/1.1" 200 None +2025-03-07 17:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3402?force=true HTTP/1.1" 200 None +2025-03-07 17:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3401?force=true HTTP/1.1" 200 None +2025-03-07 17:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3400?force=true HTTP/1.1" 200 None +2025-03-07 17:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3399?force=true HTTP/1.1" 200 None +2025-03-07 17:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3398?force=true HTTP/1.1" 200 None +2025-03-07 17:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3397?force=true HTTP/1.1" 200 None +2025-03-07 17:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3396?force=true HTTP/1.1" 200 None +2025-03-07 17:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3395?force=true HTTP/1.1" 200 None +2025-03-07 17:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3394?force=true HTTP/1.1" 200 None +2025-03-07 17:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3393?force=true HTTP/1.1" 200 None +2025-03-07 17:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3392?force=true HTTP/1.1" 200 None +2025-03-07 17:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3391?force=true HTTP/1.1" 200 None +2025-03-07 17:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3390?force=true HTTP/1.1" 200 None +2025-03-07 17:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3389?force=true HTTP/1.1" 200 None +2025-03-07 17:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3388?force=true HTTP/1.1" 200 None +2025-03-07 17:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3387?force=true HTTP/1.1" 200 None +2025-03-07 17:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3386?force=true HTTP/1.1" 200 None +2025-03-07 17:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3385?force=true HTTP/1.1" 200 None +2025-03-07 17:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3384?force=true HTTP/1.1" 200 None +2025-03-07 17:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3383?force=true HTTP/1.1" 200 None +2025-03-07 17:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3382?force=true HTTP/1.1" 200 None +2025-03-07 17:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3381?force=true HTTP/1.1" 200 None +2025-03-07 17:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3380?force=true HTTP/1.1" 200 None +2025-03-07 17:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3379?force=true HTTP/1.1" 200 None +2025-03-07 17:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3378?force=true HTTP/1.1" 200 None +2025-03-07 17:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3377?force=true HTTP/1.1" 200 None +2025-03-07 17:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3376?force=true HTTP/1.1" 200 None +2025-03-07 17:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3375?force=true HTTP/1.1" 200 None +2025-03-07 17:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3374?force=true HTTP/1.1" 200 None +2025-03-07 17:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3373?force=true HTTP/1.1" 200 None +2025-03-07 17:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3372?force=true HTTP/1.1" 200 None +2025-03-07 17:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3371?force=true HTTP/1.1" 200 None +2025-03-07 17:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3370?force=true HTTP/1.1" 200 None +2025-03-07 17:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3369?force=true HTTP/1.1" 200 None +2025-03-07 17:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3368?force=true HTTP/1.1" 200 None +2025-03-07 17:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3367?force=true HTTP/1.1" 200 None +2025-03-07 17:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3366?force=true HTTP/1.1" 200 None +2025-03-07 17:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3365?force=true HTTP/1.1" 200 None +2025-03-07 17:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3364?force=true HTTP/1.1" 200 None +2025-03-07 17:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3363?force=true HTTP/1.1" 200 None +2025-03-07 17:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3362?force=true HTTP/1.1" 200 None +2025-03-07 17:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3361?force=true HTTP/1.1" 200 None +2025-03-07 17:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3360?force=true HTTP/1.1" 200 None +2025-03-07 17:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3359?force=true HTTP/1.1" 200 None +2025-03-07 17:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3358?force=true HTTP/1.1" 200 None +2025-03-07 17:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3357?force=true HTTP/1.1" 200 None +2025-03-07 17:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3356?force=true HTTP/1.1" 200 None +2025-03-07 17:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3355?force=true HTTP/1.1" 200 None +2025-03-07 17:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3354?force=true HTTP/1.1" 200 None +2025-03-07 17:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3353?force=true HTTP/1.1" 200 None +2025-03-07 17:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3352?force=true HTTP/1.1" 200 None +2025-03-07 17:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3351?force=true HTTP/1.1" 200 None +2025-03-07 17:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3350?force=true HTTP/1.1" 200 None +2025-03-07 17:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3349?force=true HTTP/1.1" 200 None +2025-03-07 17:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3348?force=true HTTP/1.1" 200 None +2025-03-07 17:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3347?force=true HTTP/1.1" 200 None +2025-03-07 17:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3346?force=true HTTP/1.1" 200 None +2025-03-07 17:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3345?force=true HTTP/1.1" 200 None +2025-03-07 17:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3344?force=true HTTP/1.1" 200 None +2025-03-07 17:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3343?force=true HTTP/1.1" 200 None +2025-03-07 17:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3342?force=true HTTP/1.1" 200 None +2025-03-07 17:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3341?force=true HTTP/1.1" 200 None +2025-03-07 17:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3340?force=true HTTP/1.1" 200 None +2025-03-07 17:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3339?force=true HTTP/1.1" 200 None +2025-03-07 17:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3338?force=true HTTP/1.1" 200 None +2025-03-07 17:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3337?force=true HTTP/1.1" 200 None +2025-03-07 17:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3336?force=true HTTP/1.1" 200 None +2025-03-07 17:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3335?force=true HTTP/1.1" 200 None +2025-03-07 17:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3334?force=true HTTP/1.1" 200 None +2025-03-07 17:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3333?force=true HTTP/1.1" 200 None +2025-03-07 17:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3332?force=true HTTP/1.1" 200 None +2025-03-07 17:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3331?force=true HTTP/1.1" 200 None +2025-03-07 17:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3330?force=true HTTP/1.1" 200 None +2025-03-07 17:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3329?force=true HTTP/1.1" 200 None +2025-03-07 17:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3328?force=true HTTP/1.1" 200 None +2025-03-07 17:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3327?force=true HTTP/1.1" 200 None +2025-03-07 17:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3326?force=true HTTP/1.1" 200 None +2025-03-07 17:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3325?force=true HTTP/1.1" 200 None +2025-03-07 17:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3324?force=true HTTP/1.1" 200 None +2025-03-07 17:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3323?force=true HTTP/1.1" 200 None +2025-03-07 17:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3322?force=true HTTP/1.1" 200 None +2025-03-07 17:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3321?force=true HTTP/1.1" 200 None +2025-03-07 17:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3320?force=true HTTP/1.1" 200 None +2025-03-07 17:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3319?force=true HTTP/1.1" 200 None +2025-03-07 17:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3318?force=true HTTP/1.1" 200 None +2025-03-07 17:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3317?force=true HTTP/1.1" 200 None +2025-03-07 17:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3316?force=true HTTP/1.1" 200 None +2025-03-07 17:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3315?force=true HTTP/1.1" 200 None +2025-03-07 17:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3314?force=true HTTP/1.1" 200 None +2025-03-07 17:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3313?force=true HTTP/1.1" 200 None +2025-03-07 17:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3312?force=true HTTP/1.1" 200 None +2025-03-07 17:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3311?force=true HTTP/1.1" 200 None +2025-03-07 17:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3310?force=true HTTP/1.1" 200 None +2025-03-07 17:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3309?force=true HTTP/1.1" 200 None +2025-03-07 17:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3308?force=true HTTP/1.1" 200 None +2025-03-07 17:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3307?force=true HTTP/1.1" 200 None +2025-03-07 17:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3306?force=true HTTP/1.1" 200 None +2025-03-07 17:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3305?force=true HTTP/1.1" 200 None +2025-03-07 17:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3304?force=true HTTP/1.1" 200 None +2025-03-07 17:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3303?force=true HTTP/1.1" 200 None +2025-03-07 17:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3302?force=true HTTP/1.1" 200 None +2025-03-07 17:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3301?force=true HTTP/1.1" 200 None +2025-03-07 17:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3300?force=true HTTP/1.1" 200 None +2025-03-07 17:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3299?force=true HTTP/1.1" 200 None +2025-03-07 17:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3298?force=true HTTP/1.1" 200 None +2025-03-07 17:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3297?force=true HTTP/1.1" 200 None +2025-03-07 17:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3296?force=true HTTP/1.1" 200 None +2025-03-07 17:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3295?force=true HTTP/1.1" 200 None +2025-03-07 17:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3294?force=true HTTP/1.1" 200 None +2025-03-07 17:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3293?force=true HTTP/1.1" 200 None +2025-03-07 17:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3292?force=true HTTP/1.1" 200 None +2025-03-07 17:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3291?force=true HTTP/1.1" 200 None +2025-03-07 17:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3290?force=true HTTP/1.1" 200 None +2025-03-07 17:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3289?force=true HTTP/1.1" 200 None +2025-03-07 17:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3288?force=true HTTP/1.1" 200 None +2025-03-07 17:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-07 17:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3425 HTTP/1.1" 200 None +2025-03-07 17:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3426 HTTP/1.1" 200 None +2025-03-07 17:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3427 HTTP/1.1" 200 None +2025-03-07 17:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3428 HTTP/1.1" 200 None +2025-03-07 17:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3429 HTTP/1.1" 200 None +2025-03-07 17:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3430 HTTP/1.1" 200 None +2025-03-07 17:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3431 HTTP/1.1" 200 None +2025-03-07 17:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3432 HTTP/1.1" 200 None +2025-03-07 17:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3433 HTTP/1.1" 200 None +2025-03-07 17:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3434 HTTP/1.1" 200 None +2025-03-07 17:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3435 HTTP/1.1" 200 None +2025-03-07 17:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3436 HTTP/1.1" 200 None +2025-03-07 17:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3437 HTTP/1.1" 200 None +2025-03-07 17:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3438 HTTP/1.1" 200 None +2025-03-07 17:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3439 HTTP/1.1" 200 None +2025-03-07 17:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3440 HTTP/1.1" 200 None +2025-03-07 17:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3441 HTTP/1.1" 200 None +2025-03-07 17:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3442 HTTP/1.1" 200 None +2025-03-07 17:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3443 HTTP/1.1" 200 None +2025-03-07 17:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3444 HTTP/1.1" 200 None +2025-03-07 17:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3445 HTTP/1.1" 200 None +2025-03-07 17:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3446 HTTP/1.1" 200 None +2025-03-07 17:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3447 HTTP/1.1" 200 None +2025-03-07 17:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3448 HTTP/1.1" 200 None +2025-03-07 17:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3449 HTTP/1.1" 200 None +2025-03-07 17:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3450 HTTP/1.1" 200 None +2025-03-07 17:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3451 HTTP/1.1" 200 None +2025-03-07 17:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3452 HTTP/1.1" 200 None +2025-03-07 17:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3453 HTTP/1.1" 200 None +2025-03-07 17:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3454 HTTP/1.1" 200 None +2025-03-07 17:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3455 HTTP/1.1" 200 None +2025-03-07 17:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3456 HTTP/1.1" 200 None +2025-03-07 17:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3457 HTTP/1.1" 200 None +2025-03-07 17:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3458 HTTP/1.1" 200 None +2025-03-07 17:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3459 HTTP/1.1" 200 None +2025-03-07 17:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3460 HTTP/1.1" 200 None +2025-03-07 17:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3461 HTTP/1.1" 200 None +2025-03-07 17:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3462 HTTP/1.1" 200 None +2025-03-07 17:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3463 HTTP/1.1" 200 None +2025-03-07 17:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3464 HTTP/1.1" 200 None +2025-03-07 17:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3465 HTTP/1.1" 200 None +2025-03-07 17:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3466 HTTP/1.1" 200 None +2025-03-07 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3467 HTTP/1.1" 200 None +2025-03-07 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3468 HTTP/1.1" 200 None +2025-03-07 17:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3469 HTTP/1.1" 200 None +2025-03-07 17:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3470 HTTP/1.1" 200 None +2025-03-07 17:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3471 HTTP/1.1" 200 None +2025-03-07 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3472 HTTP/1.1" 200 None +2025-03-07 17:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3473 HTTP/1.1" 200 None +2025-03-07 17:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3474 HTTP/1.1" 200 None +2025-03-07 17:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3475 HTTP/1.1" 200 None +2025-03-07 17:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3476 HTTP/1.1" 200 None +2025-03-07 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3477 HTTP/1.1" 200 None +2025-03-07 17:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3478 HTTP/1.1" 200 None +2025-03-07 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3479 HTTP/1.1" 200 None +2025-03-07 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3480 HTTP/1.1" 200 None +2025-03-07 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3481 HTTP/1.1" 200 None +2025-03-07 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3482 HTTP/1.1" 200 None +2025-03-07 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3483 HTTP/1.1" 200 None +2025-03-07 17:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3484 HTTP/1.1" 200 None +2025-03-07 17:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3485 HTTP/1.1" 200 None +2025-03-07 17:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3486 HTTP/1.1" 200 None +2025-03-07 17:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3487 HTTP/1.1" 200 None +2025-03-07 17:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3488 HTTP/1.1" 200 None +2025-03-07 17:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3489 HTTP/1.1" 200 None +2025-03-07 17:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3490 HTTP/1.1" 200 None +2025-03-07 17:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3491 HTTP/1.1" 200 None +2025-03-07 17:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3492 HTTP/1.1" 200 None +2025-03-07 17:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3493 HTTP/1.1" 200 None +2025-03-07 17:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3494 HTTP/1.1" 200 None +2025-03-07 17:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3495 HTTP/1.1" 200 None +2025-03-07 17:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3496 HTTP/1.1" 200 None +2025-03-07 17:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3497 HTTP/1.1" 200 None +2025-03-07 17:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3498 HTTP/1.1" 200 None +2025-03-07 17:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3499 HTTP/1.1" 200 None +2025-03-07 17:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3500 HTTP/1.1" 200 None +2025-03-07 17:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3501 HTTP/1.1" 200 None +2025-03-07 17:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3502 HTTP/1.1" 200 None +2025-03-07 17:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3503 HTTP/1.1" 200 None +2025-03-07 17:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3504 HTTP/1.1" 200 None +2025-03-07 17:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3505 HTTP/1.1" 200 None +2025-03-07 17:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3506 HTTP/1.1" 200 None +2025-03-07 17:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3507 HTTP/1.1" 200 None +2025-03-07 17:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3508 HTTP/1.1" 200 None +2025-03-07 17:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3509 HTTP/1.1" 200 None +2025-03-07 17:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3510 HTTP/1.1" 200 None +2025-03-07 17:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3511 HTTP/1.1" 200 None +2025-03-07 17:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3512 HTTP/1.1" 200 None +2025-03-07 17:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3513 HTTP/1.1" 200 None +2025-03-07 17:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3514 HTTP/1.1" 200 None +2025-03-07 17:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3515 HTTP/1.1" 200 None +2025-03-07 17:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3516 HTTP/1.1" 200 None +2025-03-07 17:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3517 HTTP/1.1" 200 None +2025-03-07 17:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3518 HTTP/1.1" 200 None +2025-03-07 17:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3519 HTTP/1.1" 200 None +2025-03-07 17:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3520 HTTP/1.1" 200 None +2025-03-07 17:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3521 HTTP/1.1" 200 None +2025-03-07 17:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3522 HTTP/1.1" 200 None +2025-03-07 17:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3523 HTTP/1.1" 200 None +2025-03-07 17:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3524 HTTP/1.1" 200 None +2025-03-07 17:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-07 17:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3525 HTTP/1.1" 200 None +2025-03-07 17:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3526 HTTP/1.1" 200 None +2025-03-07 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3527 HTTP/1.1" 200 None +2025-03-07 17:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3528 HTTP/1.1" 200 None +2025-03-07 17:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3529 HTTP/1.1" 200 None +2025-03-07 17:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3530 HTTP/1.1" 200 None +2025-03-07 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3531 HTTP/1.1" 200 None +2025-03-07 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3532 HTTP/1.1" 200 None +2025-03-07 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3533 HTTP/1.1" 200 None +2025-03-07 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3534 HTTP/1.1" 200 None +2025-03-07 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3535 HTTP/1.1" 200 None +2025-03-07 17:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3536 HTTP/1.1" 200 None +2025-03-07 17:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3537 HTTP/1.1" 200 None +2025-03-07 17:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3538 HTTP/1.1" 200 None +2025-03-07 17:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3539 HTTP/1.1" 200 None +2025-03-07 17:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3540 HTTP/1.1" 200 None +2025-03-07 17:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3541 HTTP/1.1" 200 None +2025-03-07 17:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3542 HTTP/1.1" 200 None +2025-03-07 17:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3543 HTTP/1.1" 200 None +2025-03-07 17:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3544 HTTP/1.1" 200 None +2025-03-07 17:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3545 HTTP/1.1" 200 None +2025-03-07 17:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3546 HTTP/1.1" 200 None +2025-03-07 17:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3547 HTTP/1.1" 200 None +2025-03-07 17:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3548 HTTP/1.1" 200 None +2025-03-07 17:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3549 HTTP/1.1" 200 None +2025-03-07 17:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3550 HTTP/1.1" 200 None +2025-03-07 17:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3551 HTTP/1.1" 200 None +2025-03-07 17:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3552 HTTP/1.1" 200 None +2025-03-07 17:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3553 HTTP/1.1" 200 None +2025-03-07 17:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3554 HTTP/1.1" 200 None +2025-03-07 17:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3555 HTTP/1.1" 200 None +2025-03-07 17:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3556 HTTP/1.1" 200 None +2025-03-07 17:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3557 HTTP/1.1" 200 None +2025-03-07 17:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3558 HTTP/1.1" 200 None +2025-03-07 17:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3559 HTTP/1.1" 200 None +2025-03-07 17:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3560 HTTP/1.1" 200 None +2025-03-07 17:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3561 HTTP/1.1" 200 None +2025-03-07 17:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3562 HTTP/1.1" 200 None +2025-03-07 17:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3563 HTTP/1.1" 200 None +2025-03-07 17:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3564 HTTP/1.1" 200 None +2025-03-07 17:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3565 HTTP/1.1" 200 None +2025-03-07 17:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3566 HTTP/1.1" 200 None +2025-03-07 17:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3567 HTTP/1.1" 200 None +2025-03-07 17:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-07 17:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3568 HTTP/1.1" 200 None +2025-03-07 17:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3429 HTTP/1.1" 200 None +2025-03-07 17:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/351 HTTP/1.1" 200 None +2025-03-07 17:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/352 HTTP/1.1" 200 None +2025-03-07 17:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3425 HTTP/1.1" 200 None +2025-03-07 17:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/352 HTTP/1.1" 200 None +2025-03-07 17:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3473 HTTP/1.1" 200 None +2025-03-07 17:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/353 HTTP/1.1" 200 None +2025-03-07 17:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3505 HTTP/1.1" 200 None +2025-03-07 17:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/354 HTTP/1.1" 200 None +2025-03-07 17:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-07 17:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/355 HTTP/1.1" 400 None +2025-03-07 17:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-07 17:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/356 HTTP/1.1" 400 None +2025-03-07 17:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-07 17:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/357 HTTP/1.1" 400 None +2025-03-07 17:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-07 17:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3513 HTTP/1.1" 200 None +2025-03-07 17:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/358 HTTP/1.1" 200 None +2025-03-07 17:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-07 17:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-07 17:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-07 17:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-07 17:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-07 17:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-07 17:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/30/terms HTTP/1.1" 201 None +2025-03-07 17:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/28/terms HTTP/1.1" 201 None +2025-03-07 17:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/32/terms HTTP/1.1" 201 None +2025-03-07 17:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/32/terms HTTP/1.1" 201 None +2025-03-07 17:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/32/terms HTTP/1.1" 201 None +2025-03-07 17:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/32/terms HTTP/1.1" 400 None +2025-03-07 17:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/27/terms HTTP/1.1" 201 None +2025-03-07 17:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/29/terms HTTP/1.1" 201 None +2025-03-07 17:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/31/terms HTTP/1.1" 201 None +2025-03-07 17:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3569 HTTP/1.1" 200 None +2025-03-07 17:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3570 HTTP/1.1" 200 None +2025-03-07 17:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3571 HTTP/1.1" 200 None +2025-03-07 17:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3572 HTTP/1.1" 200 None +2025-03-07 17:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3573 HTTP/1.1" 200 None +2025-03-07 17:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3574 HTTP/1.1" 200 None +2025-03-07 17:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3575 HTTP/1.1" 200 None +2025-03-07 17:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3576 HTTP/1.1" 200 None +2025-03-07 17:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3569 HTTP/1.1" 200 None +2025-03-07 17:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3570 HTTP/1.1" 200 None +2025-03-07 17:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3571 HTTP/1.1" 200 None +2025-03-07 17:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3572 HTTP/1.1" 200 None +2025-03-07 17:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3573 HTTP/1.1" 200 None +2025-03-07 17:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3574 HTTP/1.1" 200 None +2025-03-07 17:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3575 HTTP/1.1" 200 None +2025-03-07 17:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3576 HTTP/1.1" 200 None +2025-03-07 17:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3577 HTTP/1.1" 200 None +2025-03-07 17:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-07 17:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3569 HTTP/1.1" 200 None +2025-03-07 17:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3570 HTTP/1.1" 200 None +2025-03-07 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3571 HTTP/1.1" 200 None +2025-03-07 17:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3572 HTTP/1.1" 200 None +2025-03-07 17:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3573 HTTP/1.1" 200 None +2025-03-07 17:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3574 HTTP/1.1" 200 None +2025-03-07 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3575 HTTP/1.1" 200 None +2025-03-07 17:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3576 HTTP/1.1" 200 None +2025-03-07 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3577 HTTP/1.1" 200 None +2025-03-07 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-07 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-07 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-07 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-07 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-07 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-07 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-07 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-07 17:38:33 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-07 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:34 - INFO - create_for_product(product_id=3585, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-07 17:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:35 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-07 17:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:36 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-07 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:36 - INFO - create_for_product(product_id=3585, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-07 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:36 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-07 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:36 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-07 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:37 - INFO - create_for_product(product_id=3585, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-07 17:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:37 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-07 17:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:37 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-07 17:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:38 - INFO - create_for_product(product_id=3585, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-07 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:38 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-07 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:38 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-07 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:39 - INFO - create_for_product(product_id=3585, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-07 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:39 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-07 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:39 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-07 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:39 - INFO - create_for_product(product_id=3585, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-07 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:40 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-07 17:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:40 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-07 17:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:40 - INFO - create_for_product(product_id=3585, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-07 17:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:41 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-07 17:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:41 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-07 17:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:41 - INFO - create_for_product(product_id=3585, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-07 17:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:42 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-07 17:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:42 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-07 17:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:42 - INFO - create_for_product(product_id=3585, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-07 17:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:42 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-07 17:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:43 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-07 17:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:43 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-07 17:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:43 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-07 17:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:44 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-07 17:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:44 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-07 17:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:44 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-07 17:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:45 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-07 17:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:45 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-07 17:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:45 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-07 17:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:45 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-07 17:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:46 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-07 17:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:46 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-07 17:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:46 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-07 17:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:47 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-07 17:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:47 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-07 17:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:47 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-07 17:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:48 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-07 17:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:48 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-07 17:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:48 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-07 17:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:48 - INFO - create_for_product(product_id=3585, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-07 17:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:49 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-07 17:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:49 - INFO - create_for_product(product_id=3585, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-07 17:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:49 - INFO - create_for_product(product_id=3585, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-07 17:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:50 - INFO - create_for_product(product_id=3585, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-07 17:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3585 HTTP/1.1" 200 None +2025-03-07 17:38:50 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-07 17:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:51 - INFO - create_for_product(product_id=3584, title=Description, content=La Chope au parfum , nickname=, position=53, tab_type=local) called +2025-03-07 17:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:51 - INFO - create_for_product(product_id=3584, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-07 17:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:52 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-07 17:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:53 - INFO - create_for_product(product_id=3584, title=Description, content=La bougie Chope au p, nickname=, position=56, tab_type=local) called +2025-03-07 17:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:53 - INFO - create_for_product(product_id=3584, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-07 17:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:53 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-07 17:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:53 - INFO - create_for_product(product_id=3584, title=Description, content=La bougie Chope au p, nickname=, position=59, tab_type=local) called +2025-03-07 17:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:54 - INFO - create_for_product(product_id=3584, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-07 17:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:54 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-07 17:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:54 - INFO - create_for_product(product_id=3584, title=Description, content=La Chope au parfum d, nickname=, position=62, tab_type=local) called +2025-03-07 17:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:55 - INFO - create_for_product(product_id=3584, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-07 17:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:55 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-07 17:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:55 - INFO - create_for_product(product_id=3584, title=Description, content= La bougie Chope au , nickname=, position=65, tab_type=local) called +2025-03-07 17:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:55 - INFO - create_for_product(product_id=3584, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-07 17:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:56 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-07 17:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:56 - INFO - create_for_product(product_id=3584, title=Description, content=Cette Chope au parfu, nickname=, position=68, tab_type=local) called +2025-03-07 17:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:56 - INFO - create_for_product(product_id=3584, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-07 17:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:57 - INFO - create_for_product(product_id=3584, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-07 17:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-07 17:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3584 HTTP/1.1" 200 None +2025-03-07 17:38:57 - INFO - create_for_product(product_id=3584, title=Description, content=Cette Chope au parfu, nickname=, position=71, tab_type=local) called +2025-03-07 17:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 10:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 10:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 10:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3569 HTTP/1.1" 200 None +2025-03-08 10:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3570 HTTP/1.1" 200 None +2025-03-08 10:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3571 HTTP/1.1" 200 None +2025-03-08 10:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3572 HTTP/1.1" 200 None +2025-03-08 10:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3573 HTTP/1.1" 200 None +2025-03-08 10:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3574 HTTP/1.1" 200 None +2025-03-08 10:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3575 HTTP/1.1" 200 None +2025-03-08 10:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3576 HTTP/1.1" 200 None +2025-03-08 10:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3577 HTTP/1.1" 200 None +2025-03-08 10:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 10:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:16 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 10:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 10:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 10:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:17 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 10:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 10:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 10:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:17 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 10:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:18 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 10:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:18 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 10:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:18 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 10:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:19 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 10:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:19 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 10:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:19 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 10:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:19 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 10:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:20 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 10:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:20 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 10:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:20 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 10:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:20 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 10:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:21 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 10:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:21 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 10:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:21 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 10:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:22 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 10:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:22 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 10:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:23 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 10:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:23 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 10:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 10:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:23 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 10:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:24 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 10:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:24 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 10:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 10:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:25 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 10:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 10:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:25 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 10:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:25 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 10:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:26 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 10:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 10:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:26 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 10:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:26 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 10:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:27 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 10:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:27 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 10:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:27 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 10:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:28 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 10:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 10:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:28 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 10:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:28 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 10:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:29 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 10:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 10:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:29 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 10:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:30 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 10:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:30 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 10:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 10:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 10:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 10:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3569 HTTP/1.1" 200 None +2025-03-08 10:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3570 HTTP/1.1" 200 None +2025-03-08 10:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3571 HTTP/1.1" 200 None +2025-03-08 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3572 HTTP/1.1" 200 None +2025-03-08 10:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3573 HTTP/1.1" 200 None +2025-03-08 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3574 HTTP/1.1" 200 None +2025-03-08 10:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3575 HTTP/1.1" 200 None +2025-03-08 10:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3576 HTTP/1.1" 200 None +2025-03-08 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3577 HTTP/1.1" 200 None +2025-03-08 10:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:34:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 10:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:03 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 10:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 10:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 10:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:04 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 10:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 10:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 10:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:05 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 10:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 10:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 10:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:06 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 10:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 10:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 10:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:07 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 10:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 10:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 10:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:08 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 10:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 10:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 10:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 10:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 10:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 10:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 10:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 10:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:10 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 10:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:10 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 10:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 10:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:11 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 10:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 10:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:11 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 10:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 10:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:12 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 10:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 10:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 10:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:13 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 10:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:13 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 10:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:13 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 10:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:14 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 10:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:14 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 10:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:14 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 10:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:14 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 10:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:15 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 10:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:15 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 10:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:15 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 10:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:15 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 10:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 10:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:16 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 10:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 10:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 10:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:17 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 10:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 10:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 10:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 10:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 10:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3569 HTTP/1.1" 200 None +2025-03-08 10:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3570 HTTP/1.1" 200 None +2025-03-08 10:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3571 HTTP/1.1" 200 None +2025-03-08 10:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3572 HTTP/1.1" 200 None +2025-03-08 10:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3573 HTTP/1.1" 200 None +2025-03-08 10:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3574 HTTP/1.1" 200 None +2025-03-08 10:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3575 HTTP/1.1" 200 None +2025-03-08 10:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3576 HTTP/1.1" 200 None +2025-03-08 10:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3577 HTTP/1.1" 200 None +2025-03-08 10:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:42:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 10:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:05 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 10:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 10:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 10:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:06 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 10:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 10:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 10:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:06 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 10:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 10:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 10:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:07 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 10:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 10:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 10:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:08 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 10:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 10:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 10:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 10:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 10:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:10 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 10:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:10 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 10:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 10:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:11 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 10:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 10:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:11 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 10:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 10:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:12 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 10:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 10:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:13 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:13 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:13 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:13 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 10:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:14 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 10:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:14 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 10:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:14 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 10:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:15 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 10:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:15 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 10:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:15 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 10:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:16 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 10:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 10:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 10:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:17 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 10:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:18 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 10:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:18 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 10:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:18 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 10:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:19 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 10:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:19 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 10:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:19 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 10:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:19 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 10:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:20 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 10:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 10:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 10:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 10:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:48:34 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 10:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:34 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 10:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:35 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 10:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:35 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 10:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:35 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 10:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:35 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 10:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:36 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 10:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:36 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 10:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:36 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 10:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:37 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 10:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:37 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 10:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:37 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 10:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:37 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 10:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:38 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 10:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:38 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 10:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:38 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 10:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:39 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 10:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:39 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 10:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:39 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 10:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:39 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 10:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:40 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 10:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:40 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 10:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:40 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 10:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:40 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 10:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:41 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 10:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:41 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 10:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:41 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 10:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:42 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 10:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:42 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 10:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:42 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 10:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:42 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 10:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:43 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 10:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:43 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 10:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:43 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 10:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:43 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 10:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:44 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 10:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:44 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 10:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:44 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 10:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:45 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 10:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:45 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 10:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:45 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 10:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:45 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 10:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:46 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 10:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:46 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 10:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:46 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 10:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:46 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 10:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:47 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 10:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:47 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 10:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:47 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 10:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:48 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 10:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:48 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 10:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 10:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 10:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 10:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:52:15 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 10:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:15 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 10:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 10:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 10:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:16 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 10:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 10:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 10:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:17 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 10:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 10:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 10:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:18 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 10:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:18 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 10:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:18 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 10:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:18 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 10:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:19 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 10:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:19 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 10:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:20 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 10:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:20 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 10:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:20 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 10:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:20 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 10:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:21 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 10:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:21 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 10:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:21 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 10:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:21 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 10:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:22 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 10:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:22 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 10:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 10:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:23 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 10:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:23 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 10:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 10:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 10:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:24 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 10:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:24 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 10:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 10:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:25 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 10:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 10:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:25 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 10:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:26 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 10:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:26 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 10:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 10:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:26 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 10:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:27 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 10:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:27 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 10:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:27 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 10:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:27 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 10:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:28 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 10:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 10:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:28 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 10:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:29 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 10:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:29 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 10:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 10:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 10:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 10:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 10:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 10:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 10:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:58:00 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 10:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:00 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 10:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:00 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 10:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:01 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 10:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:01 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 10:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:01 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 10:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 10:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:02 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 10:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 10:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 10:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:03 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 10:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 10:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 10:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:04 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 10:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 10:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 10:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:04 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 10:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 10:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 10:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:05 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 10:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 10:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 10:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:06 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 10:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 10:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 10:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:07 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 10:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 10:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 10:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:08 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 10:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 10:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 10:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 10:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 10:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 10:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 10:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 10:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:10 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 10:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:10 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 10:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:11 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 10:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:11 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 10:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 10:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 10:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 10:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:12 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 10:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 10:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:13 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 10:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:13 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 10:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:13 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 10:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:14 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 10:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:14 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 10:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:14 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 10:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 10:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 10:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 10:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:01:55 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:56 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:56 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:56 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:56 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:57 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:57 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:57 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:57 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:58 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:58 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:58 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:58 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:59 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:59 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:01:59 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:00 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:00 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:00 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:00 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:01 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:01 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:01 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:01 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:02 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:03 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:04 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:05 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:05 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:06 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:07 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:08 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:09 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:03:23 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:23 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:24 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:24 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:25 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:25 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:26 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:26 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:27 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:27 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:27 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:28 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:28 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:29 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:29 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:30 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:30 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:30 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:31 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:31 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:31 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:31 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:32 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:32 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:32 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:32 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:33 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:33 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:33 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:33 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:34 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:34 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:34 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:34 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:35 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:35 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:35 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:36 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:36 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:36 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:36 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:37 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:06:36 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:36 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:36 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:36 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:37 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:37 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:37 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:38 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:38 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:38 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:38 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:39 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:39 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:39 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:39 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:40 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:40 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:40 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:40 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:41 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:41 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:41 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:42 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:42 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:42 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:42 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:43 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:43 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:43 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:43 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:44 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:44 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:44 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:44 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:45 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:45 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:45 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:45 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:46 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:46 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:46 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:47 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:47 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:47 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:47 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:48 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:48 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:48 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:48 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:49 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:49 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:07:47 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:48 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:48 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:48 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:49 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:49 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:49 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:49 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:50 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:50 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:50 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:50 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:51 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:51 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:51 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:51 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:52 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:52 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:52 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:53 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:53 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:53 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:53 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:54 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:54 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:54 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:54 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:55 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:55 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:55 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:56 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:56 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:56 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:56 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:59 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:59 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:07:59 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:00 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:00 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:00 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:00 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:01 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:01 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:01 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:02 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:03 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=10 HTTP/1.1" 200 None +2025-03-08 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:16:51 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:51 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:52 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:52 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:52 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:52 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:53 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:53 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:53 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:54 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:54 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:54 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:54 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:55 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:55 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:55 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:56 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:56 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:56 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:56 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:57 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:57 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:57 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:57 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:58 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:58 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:58 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:59 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:59 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:59 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:16:59 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:00 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:00 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:00 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:00 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:01 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:01 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:01 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:02 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:03 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:04 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:05 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-08 11:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:25:59 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:25:59 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:25:59 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:25:59 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:00 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:00 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:00 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:01 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:01 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:01 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:01 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:02 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:03 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:04 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:05 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:06 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:06 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:07 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:08 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:10 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:10 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:11 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:11 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:12 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:13 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-08 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:30:39 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:39 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:39 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:40 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:40 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:40 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:41 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:41 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:41 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:41 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:42 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:42 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:42 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:43 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:43 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:43 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:43 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:44 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:44 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:44 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:44 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:45 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:45 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:45 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:46 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:46 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:46 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:46 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:47 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:47 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:47 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:47 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:48 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:48 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:48 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:49 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:49 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:49 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:49 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:50 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:50 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:50 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:50 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:51 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:51 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:51 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:52 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:52 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:52 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:52 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:53 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-08 11:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:32:22 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:22 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:23 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:23 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:24 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:24 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:25 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:25 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:25 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:26 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:27 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:27 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:27 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:27 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:28 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:28 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:28 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:29 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:29 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:29 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:30 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:30 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:30 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:30 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:31 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:31 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:31 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:32 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:32 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:32 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:32 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:33 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:33 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:33 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:33 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:34 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:34 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:34 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:35 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:35 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:35 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:36 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:36 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-08 11:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-08 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:34:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:05 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:06 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:07 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:08 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:08 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:10 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:10 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:11 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:11 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:12 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:13 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:13 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:13 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:13 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:14 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:14 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:14 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:15 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:15 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:15 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:15 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:16 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:17 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:17 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:18 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:18 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:18 - INFO - create_for_product(product_id=None, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:19 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-08 11:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3601?force=True HTTP/1.1" 200 None +2025-03-08 11:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:38:45 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:46 - INFO - create_for_product(product_id=3602, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:47 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:47 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:48 - INFO - create_for_product(product_id=3602, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:48 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:48 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:49 - INFO - create_for_product(product_id=3602, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:49 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:49 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:50 - INFO - create_for_product(product_id=3602, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:50 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:50 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:51 - INFO - create_for_product(product_id=3602, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:51 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:51 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:51 - INFO - create_for_product(product_id=3602, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:52 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:52 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:52 - INFO - create_for_product(product_id=3602, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:53 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:53 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:53 - INFO - create_for_product(product_id=3602, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:54 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:54 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:54 - INFO - create_for_product(product_id=3602, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:55 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:55 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:55 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:55 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:56 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:56 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:56 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:57 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:57 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:57 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:58 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:58 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:58 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:58 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:59 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:59 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:38:59 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:00 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:00 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:00 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:01 - INFO - create_for_product(product_id=3602, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:01 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:01 - INFO - create_for_product(product_id=3602, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:02 - INFO - create_for_product(product_id=3602, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:02 - INFO - create_for_product(product_id=3602, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3602 HTTP/1.1" 200 None +2025-03-08 11:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3602 HTTP/1.1" 400 None +2025-03-08 11:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3602?force=True HTTP/1.1" 200 None +2025-03-08 11:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3582?force=True HTTP/1.1" 200 None +2025-03-08 11:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3581?force=True HTTP/1.1" 200 None +2025-03-08 11:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3580?force=True HTTP/1.1" 200 None +2025-03-08 11:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3579?force=True HTTP/1.1" 200 None +2025-03-08 11:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3578?force=True HTTP/1.1" 200 None +2025-03-08 11:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3577?force=True HTTP/1.1" 200 None +2025-03-08 11:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3576?force=True HTTP/1.1" 200 None +2025-03-08 11:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3575?force=True HTTP/1.1" 200 None +2025-03-08 11:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3574?force=True HTTP/1.1" 200 None +2025-03-08 11:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3573?force=True HTTP/1.1" 200 None +2025-03-08 11:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3572?force=True HTTP/1.1" 200 None +2025-03-08 11:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3571?force=True HTTP/1.1" 200 None +2025-03-08 11:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3570?force=True HTTP/1.1" 200 None +2025-03-08 11:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3569?force=True HTTP/1.1" 200 None +2025-03-08 11:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3603 HTTP/1.1" 200 None +2025-03-08 11:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3604 HTTP/1.1" 200 None +2025-03-08 11:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3605 HTTP/1.1" 200 None +2025-03-08 11:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3606 HTTP/1.1" 200 None +2025-03-08 11:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3607 HTTP/1.1" 200 None +2025-03-08 11:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3608 HTTP/1.1" 200 None +2025-03-08 11:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3609 HTTP/1.1" 200 None +2025-03-08 11:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3610 HTTP/1.1" 200 None +2025-03-08 11:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3611 HTTP/1.1" 200 None +2025-03-08 11:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3612 HTTP/1.1" 200 None +2025-03-08 11:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3613 HTTP/1.1" 200 None +2025-03-08 11:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3614 HTTP/1.1" 200 None +2025-03-08 11:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3615 HTTP/1.1" 200 None +2025-03-08 11:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3616 HTTP/1.1" 200 None +2025-03-08 11:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:43:30 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 11:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:30 - INFO - create_for_product(product_id=3619, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 11:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:31 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 11:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:32 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 11:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:32 - INFO - create_for_product(product_id=3619, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 11:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:33 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 11:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:33 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 11:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:33 - INFO - create_for_product(product_id=3619, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 11:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:33 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 11:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:34 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 11:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:34 - INFO - create_for_product(product_id=3619, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 11:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:34 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 11:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:35 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 11:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:35 - INFO - create_for_product(product_id=3619, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 11:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:35 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 11:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:36 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 11:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:36 - INFO - create_for_product(product_id=3619, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 11:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:36 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 11:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:36 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 11:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:37 - INFO - create_for_product(product_id=3619, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 11:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:37 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 11:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:37 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 11:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:38 - INFO - create_for_product(product_id=3619, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 11:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:38 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 11:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:38 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 11:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:39 - INFO - create_for_product(product_id=3619, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 11:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:39 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 11:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:39 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 11:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:39 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 11:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:40 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 11:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:40 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 11:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:40 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 11:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:41 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 11:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:41 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 11:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:41 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 11:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:42 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 11:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:42 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 11:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:42 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 11:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:42 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 11:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:43 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 11:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:43 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 11:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:43 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 11:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:44 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 11:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:44 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 11:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:44 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 11:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:45 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 11:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:45 - INFO - create_for_product(product_id=3619, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 11:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:45 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 11:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:45 - INFO - create_for_product(product_id=3619, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 11:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:46 - INFO - create_for_product(product_id=3619, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:46 - INFO - create_for_product(product_id=3619, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3619 HTTP/1.1" 200 None +2025-03-08 11:43:46 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:47 - INFO - create_for_product(product_id=3618, title=Description, content=La Chope au parfum , nickname=, position=53, tab_type=local) called +2025-03-08 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:48 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 11:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:48 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 11:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:49 - INFO - create_for_product(product_id=3618, title=Description, content=La bougie Chope au p, nickname=, position=56, tab_type=local) called +2025-03-08 11:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:49 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 11:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:49 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 11:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:49 - INFO - create_for_product(product_id=3618, title=Description, content=La bougie Chope au p, nickname=, position=59, tab_type=local) called +2025-03-08 11:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:50 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 11:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:50 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 11:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:50 - INFO - create_for_product(product_id=3618, title=Description, content=La Chope au parfum d, nickname=, position=62, tab_type=local) called +2025-03-08 11:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:51 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 11:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:51 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 11:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:51 - INFO - create_for_product(product_id=3618, title=Description, content= La bougie Chope au , nickname=, position=65, tab_type=local) called +2025-03-08 11:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:52 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 11:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:52 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 11:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:52 - INFO - create_for_product(product_id=3618, title=Description, content=Cette Chope au parfu, nickname=, position=68, tab_type=local) called +2025-03-08 11:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:53 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 11:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:53 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 11:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:53 - INFO - create_for_product(product_id=3618, title=Description, content=Cette Chope au parfu, nickname=, position=71, tab_type=local) called +2025-03-08 11:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:53 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 11:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:54 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 11:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:54 - INFO - create_for_product(product_id=3618, title=Description, content=Cette Chope au parfu, nickname=, position=74, tab_type=local) called +2025-03-08 11:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:54 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 11:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:55 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=76, tab_type=local) called +2025-03-08 11:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:55 - INFO - create_for_product(product_id=3618, title=Description, content=Cette Chope au parfu, nickname=, position=77, tab_type=local) called +2025-03-08 11:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:55 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=78, tab_type=local) called +2025-03-08 11:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:55 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=79, tab_type=local) called +2025-03-08 11:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:56 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=80, tab_type=local) called +2025-03-08 11:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:56 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=81, tab_type=local) called +2025-03-08 11:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:56 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=82, tab_type=local) called +2025-03-08 11:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:57 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=83, tab_type=local) called +2025-03-08 11:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:57 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=84, tab_type=local) called +2025-03-08 11:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:57 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=85, tab_type=local) called +2025-03-08 11:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:57 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=86, tab_type=local) called +2025-03-08 11:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:58 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=87, tab_type=local) called +2025-03-08 11:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:58 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=88, tab_type=local) called +2025-03-08 11:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:58 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=89, tab_type=local) called +2025-03-08 11:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:59 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=90, tab_type=local) called +2025-03-08 11:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:59 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=91, tab_type=local) called +2025-03-08 11:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:43:59 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=92, tab_type=local) called +2025-03-08 11:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:00 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=93, tab_type=local) called +2025-03-08 11:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:00 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=94, tab_type=local) called +2025-03-08 11:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:00 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=95, tab_type=local) called +2025-03-08 11:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:00 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=96, tab_type=local) called +2025-03-08 11:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:01 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=97, tab_type=local) called +2025-03-08 11:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:01 - INFO - create_for_product(product_id=3618, title=Description, content=Cette bougie est ent, nickname=, position=98, tab_type=local) called +2025-03-08 11:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:01 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=99, tab_type=local) called +2025-03-08 11:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:02 - INFO - create_for_product(product_id=3618, title=Conseils dutilisation, content=None, nickname=, position=100, tab_type=local) called +2025-03-08 11:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:02 - INFO - create_for_product(product_id=3618, title=Description, content=None, nickname=, position=101, tab_type=local) called +2025-03-08 11:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:02 - INFO - create_for_product(product_id=3618, title=Prcautions articles, content=None, nickname=, position=102, tab_type=local) called +2025-03-08 11:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3618 HTTP/1.1" 200 None +2025-03-08 11:44:03 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=103, tab_type=local) called +2025-03-08 11:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:03 - INFO - create_for_product(product_id=3617, title=Description, content=La Chope au parfum , nickname=, position=104, tab_type=local) called +2025-03-08 11:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:04 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=105, tab_type=local) called +2025-03-08 11:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:05 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=106, tab_type=local) called +2025-03-08 11:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:05 - INFO - create_for_product(product_id=3617, title=Description, content=La bougie Chope au p, nickname=, position=107, tab_type=local) called +2025-03-08 11:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:05 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=108, tab_type=local) called +2025-03-08 11:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:06 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=109, tab_type=local) called +2025-03-08 11:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:06 - INFO - create_for_product(product_id=3617, title=Description, content=La bougie Chope au p, nickname=, position=110, tab_type=local) called +2025-03-08 11:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:06 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=111, tab_type=local) called +2025-03-08 11:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:07 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=112, tab_type=local) called +2025-03-08 11:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:07 - INFO - create_for_product(product_id=3617, title=Description, content=La Chope au parfum d, nickname=, position=113, tab_type=local) called +2025-03-08 11:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:07 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=114, tab_type=local) called +2025-03-08 11:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:08 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=115, tab_type=local) called +2025-03-08 11:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:08 - INFO - create_for_product(product_id=3617, title=Description, content= La bougie Chope au , nickname=, position=116, tab_type=local) called +2025-03-08 11:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:08 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=117, tab_type=local) called +2025-03-08 11:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:09 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=118, tab_type=local) called +2025-03-08 11:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:09 - INFO - create_for_product(product_id=3617, title=Description, content=Cette Chope au parfu, nickname=, position=119, tab_type=local) called +2025-03-08 11:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:09 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=120, tab_type=local) called +2025-03-08 11:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:10 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=121, tab_type=local) called +2025-03-08 11:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:10 - INFO - create_for_product(product_id=3617, title=Description, content=Cette Chope au parfu, nickname=, position=122, tab_type=local) called +2025-03-08 11:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:10 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=123, tab_type=local) called +2025-03-08 11:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:11 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=124, tab_type=local) called +2025-03-08 11:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:11 - INFO - create_for_product(product_id=3617, title=Description, content=Cette Chope au parfu, nickname=, position=125, tab_type=local) called +2025-03-08 11:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:12 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=126, tab_type=local) called +2025-03-08 11:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:12 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=127, tab_type=local) called +2025-03-08 11:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:12 - INFO - create_for_product(product_id=3617, title=Description, content=Cette Chope au parfu, nickname=, position=128, tab_type=local) called +2025-03-08 11:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:13 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=129, tab_type=local) called +2025-03-08 11:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:13 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=130, tab_type=local) called +2025-03-08 11:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:13 - INFO - create_for_product(product_id=3617, title=Description, content=Cette bougie est ent, nickname=, position=131, tab_type=local) called +2025-03-08 11:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:14 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=132, tab_type=local) called +2025-03-08 11:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:14 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=133, tab_type=local) called +2025-03-08 11:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:14 - INFO - create_for_product(product_id=3617, title=Description, content=Cette bougie est ent, nickname=, position=134, tab_type=local) called +2025-03-08 11:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:15 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=135, tab_type=local) called +2025-03-08 11:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:15 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=136, tab_type=local) called +2025-03-08 11:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:15 - INFO - create_for_product(product_id=3617, title=Description, content=Cette bougie est ent, nickname=, position=137, tab_type=local) called +2025-03-08 11:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:16 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=138, tab_type=local) called +2025-03-08 11:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:16 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=139, tab_type=local) called +2025-03-08 11:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:16 - INFO - create_for_product(product_id=3617, title=Description, content=Cette bougie est ent, nickname=, position=140, tab_type=local) called +2025-03-08 11:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:17 - INFO - create_for_product(product_id=3617, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=141, tab_type=local) called +2025-03-08 11:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3617 HTTP/1.1" 200 None +2025-03-08 11:44:17 - INFO - create_for_product(product_id=3617, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=142, tab_type=local) called +2025-03-08 11:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3619?force=True HTTP/1.1" 200 None +2025-03-08 11:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3618?force=True HTTP/1.1" 200 None +2025-03-08 11:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3617?force=True HTTP/1.1" 200 None +2025-03-08 11:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3616?force=True HTTP/1.1" 200 None +2025-03-08 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3615?force=True HTTP/1.1" 200 None +2025-03-08 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3614?force=True HTTP/1.1" 200 None +2025-03-08 11:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3613?force=True HTTP/1.1" 200 None +2025-03-08 11:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3612?force=True HTTP/1.1" 200 None +2025-03-08 11:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3611?force=True HTTP/1.1" 200 None +2025-03-08 11:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3610?force=True HTTP/1.1" 200 None +2025-03-08 11:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3609?force=True HTTP/1.1" 200 None +2025-03-08 11:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3608?force=True HTTP/1.1" 200 None +2025-03-08 11:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3607?force=True HTTP/1.1" 200 None +2025-03-08 11:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3606?force=True HTTP/1.1" 200 None +2025-03-08 11:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3605?force=True HTTP/1.1" 200 None +2025-03-08 11:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3604?force=True HTTP/1.1" 200 None +2025-03-08 11:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3603?force=True HTTP/1.1" 200 None +2025-03-08 11:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 11:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 11:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 11:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3620 HTTP/1.1" 200 None +2025-03-08 11:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3621 HTTP/1.1" 200 None +2025-03-08 11:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3622 HTTP/1.1" 200 None +2025-03-08 11:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3623 HTTP/1.1" 200 None +2025-03-08 11:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3624 HTTP/1.1" 200 None +2025-03-08 11:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3625 HTTP/1.1" 200 None +2025-03-08 11:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3626 HTTP/1.1" 200 None +2025-03-08 11:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3627 HTTP/1.1" 200 None +2025-03-08 11:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3628 HTTP/1.1" 200 None +2025-03-08 11:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3629 HTTP/1.1" 200 None +2025-03-08 11:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3630 HTTP/1.1" 200 None +2025-03-08 11:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3631 HTTP/1.1" 200 None +2025-03-08 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 11:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3632 HTTP/1.1" 200 None +2025-03-08 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 11:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 12:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3498?force=true HTTP/1.1" 200 None +2025-03-08 12:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3633?force=True HTTP/1.1" 200 None +2025-03-08 12:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3632?force=True HTTP/1.1" 200 None +2025-03-08 12:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3631?force=True HTTP/1.1" 200 None +2025-03-08 12:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3630?force=True HTTP/1.1" 200 None +2025-03-08 12:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3629?force=True HTTP/1.1" 200 None +2025-03-08 12:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3628?force=True HTTP/1.1" 200 None +2025-03-08 12:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3627?force=True HTTP/1.1" 200 None +2025-03-08 12:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3626?force=True HTTP/1.1" 200 None +2025-03-08 12:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3625?force=True HTTP/1.1" 200 None +2025-03-08 12:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3624?force=True HTTP/1.1" 200 None +2025-03-08 12:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3623?force=True HTTP/1.1" 200 None +2025-03-08 12:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3622?force=True HTTP/1.1" 200 None +2025-03-08 12:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3621?force=True HTTP/1.1" 200 None +2025-03-08 12:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3634?force=true HTTP/1.1" 200 None +2025-03-08 12:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3635?force=true HTTP/1.1" 200 None +2025-03-08 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-08 12:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:14:46 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:47 - INFO - create_for_product(product_id=3636, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:47 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:48 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 12:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:49 - INFO - create_for_product(product_id=3636, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:49 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:49 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:49 - INFO - create_for_product(product_id=3636, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:50 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:50 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:50 - INFO - create_for_product(product_id=3636, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:51 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:51 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:51 - INFO - create_for_product(product_id=3636, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:52 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:52 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:52 - INFO - create_for_product(product_id=3636, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:52 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:53 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:53 - INFO - create_for_product(product_id=3636, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:53 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:54 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:54 - INFO - create_for_product(product_id=3636, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:54 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:54 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:55 - INFO - create_for_product(product_id=3636, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 12:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:55 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 12:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:55 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 12:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:56 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:56 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:56 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:57 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 12:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:57 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 12:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:57 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 12:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:58 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:58 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:58 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:58 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:59 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:59 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:14:59 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:00 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 12:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:00 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 12:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:00 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 12:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:01 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:01 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:01 - INFO - create_for_product(product_id=3636, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:01 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:02 - INFO - create_for_product(product_id=3636, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:02 - INFO - create_for_product(product_id=3636, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:02 - INFO - create_for_product(product_id=3636, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3636 HTTP/1.1" 400 None +2025-03-08 12:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3636 HTTP/1.1" 200 None +2025-03-08 12:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3636?force=True HTTP/1.1" 200 None +2025-03-08 12:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 12:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 12:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 12:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 12:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:16:44 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:45 - INFO - create_for_product(product_id=3638, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:45 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:46 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:46 - INFO - create_for_product(product_id=3638, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:46 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:47 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:47 - INFO - create_for_product(product_id=3638, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:47 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:48 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 12:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:48 - INFO - create_for_product(product_id=3638, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 12:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:48 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 12:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:49 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:49 - INFO - create_for_product(product_id=3638, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:49 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:49 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:50 - INFO - create_for_product(product_id=3638, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 12:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:50 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 12:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:51 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 12:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:51 - INFO - create_for_product(product_id=3638, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 12:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:51 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 12:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:51 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 12:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:52 - INFO - create_for_product(product_id=3638, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 12:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:52 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 12:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:52 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 12:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:53 - INFO - create_for_product(product_id=3638, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 12:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:53 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 12:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:53 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 12:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:54 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 12:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:54 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 12:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:54 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 12:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:54 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 12:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:55 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 12:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:55 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 12:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:55 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 12:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:56 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:56 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:56 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:57 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 12:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:57 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 12:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:57 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 12:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:58 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:58 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:58 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:58 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:59 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 12:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:59 - INFO - create_for_product(product_id=3638, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 12:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:16:59 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 12:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:00 - INFO - create_for_product(product_id=3638, title=Conseils dutilisation, content=None, nickname=, position=49, tab_type=local) called +2025-03-08 12:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:00 - INFO - create_for_product(product_id=3638, title=Description, content=None, nickname=, position=50, tab_type=local) called +2025-03-08 12:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:00 - INFO - create_for_product(product_id=3638, title=Prcautions articles, content=None, nickname=, position=51, tab_type=local) called +2025-03-08 12:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 12:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3638 HTTP/1.1" 200 None +2025-03-08 12:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 12:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3638 HTTP/1.1" 400 None +2025-03-08 14:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3637?force=true HTTP/1.1" 200 None +2025-03-08 14:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3568?force=true HTTP/1.1" 200 None +2025-03-08 14:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3567?force=true HTTP/1.1" 200 None +2025-03-08 14:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3566?force=true HTTP/1.1" 200 None +2025-03-08 14:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3565?force=true HTTP/1.1" 200 None +2025-03-08 14:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3564?force=true HTTP/1.1" 200 None +2025-03-08 14:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3563?force=true HTTP/1.1" 200 None +2025-03-08 14:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3562?force=true HTTP/1.1" 200 None +2025-03-08 14:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3561?force=true HTTP/1.1" 200 None +2025-03-08 14:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3560?force=true HTTP/1.1" 200 None +2025-03-08 14:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3559?force=true HTTP/1.1" 200 None +2025-03-08 14:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3558?force=true HTTP/1.1" 200 None +2025-03-08 14:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3557?force=true HTTP/1.1" 200 None +2025-03-08 14:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3556?force=true HTTP/1.1" 200 None +2025-03-08 14:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3555?force=true HTTP/1.1" 200 None +2025-03-08 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3554?force=true HTTP/1.1" 200 None +2025-03-08 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3553?force=true HTTP/1.1" 200 None +2025-03-08 14:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3552?force=true HTTP/1.1" 200 None +2025-03-08 14:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3551?force=true HTTP/1.1" 200 None +2025-03-08 14:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3550?force=true HTTP/1.1" 200 None +2025-03-08 14:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3549?force=true HTTP/1.1" 200 None +2025-03-08 14:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3548?force=true HTTP/1.1" 200 None +2025-03-08 14:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3547?force=true HTTP/1.1" 200 None +2025-03-08 14:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3546?force=true HTTP/1.1" 200 None +2025-03-08 14:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3545?force=true HTTP/1.1" 200 None +2025-03-08 14:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3544?force=true HTTP/1.1" 200 None +2025-03-08 14:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3543?force=true HTTP/1.1" 200 None +2025-03-08 14:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3542?force=true HTTP/1.1" 200 None +2025-03-08 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3541?force=true HTTP/1.1" 200 None +2025-03-08 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3540?force=true HTTP/1.1" 200 None +2025-03-08 14:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3539?force=true HTTP/1.1" 200 None +2025-03-08 14:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3538?force=true HTTP/1.1" 200 None +2025-03-08 14:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3537?force=true HTTP/1.1" 200 None +2025-03-08 14:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3536?force=true HTTP/1.1" 200 None +2025-03-08 14:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3535?force=true HTTP/1.1" 200 None +2025-03-08 14:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3534?force=true HTTP/1.1" 200 None +2025-03-08 14:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3533?force=true HTTP/1.1" 200 None +2025-03-08 14:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3532?force=true HTTP/1.1" 200 None +2025-03-08 14:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3531?force=true HTTP/1.1" 200 None +2025-03-08 14:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3530?force=true HTTP/1.1" 200 None +2025-03-08 14:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3529?force=true HTTP/1.1" 200 None +2025-03-08 14:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3528?force=true HTTP/1.1" 200 None +2025-03-08 14:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3527?force=true HTTP/1.1" 200 None +2025-03-08 14:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3526?force=true HTTP/1.1" 200 None +2025-03-08 14:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3525?force=true HTTP/1.1" 200 None +2025-03-08 14:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3524?force=true HTTP/1.1" 200 None +2025-03-08 14:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3523?force=true HTTP/1.1" 200 None +2025-03-08 14:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3522?force=true HTTP/1.1" 200 None +2025-03-08 14:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3521?force=true HTTP/1.1" 200 None +2025-03-08 14:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3520?force=true HTTP/1.1" 200 None +2025-03-08 14:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3519?force=true HTTP/1.1" 200 None +2025-03-08 14:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3518?force=true HTTP/1.1" 200 None +2025-03-08 14:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3517?force=true HTTP/1.1" 200 None +2025-03-08 14:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3516?force=true HTTP/1.1" 200 None +2025-03-08 14:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3515?force=true HTTP/1.1" 200 None +2025-03-08 14:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3514?force=true HTTP/1.1" 200 None +2025-03-08 14:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3513?force=true HTTP/1.1" 200 None +2025-03-08 14:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3512?force=true HTTP/1.1" 200 None +2025-03-08 14:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3511?force=true HTTP/1.1" 200 None +2025-03-08 14:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3510?force=true HTTP/1.1" 200 None +2025-03-08 14:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3509?force=true HTTP/1.1" 200 None +2025-03-08 14:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3508?force=true HTTP/1.1" 200 None +2025-03-08 14:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3507?force=true HTTP/1.1" 200 None +2025-03-08 14:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3506?force=true HTTP/1.1" 200 None +2025-03-08 14:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3505?force=true HTTP/1.1" 200 None +2025-03-08 14:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3504?force=true HTTP/1.1" 200 None +2025-03-08 14:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3503?force=true HTTP/1.1" 200 None +2025-03-08 14:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3502?force=true HTTP/1.1" 200 None +2025-03-08 14:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3501?force=true HTTP/1.1" 200 None +2025-03-08 14:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3500?force=true HTTP/1.1" 200 None +2025-03-08 14:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3499?force=true HTTP/1.1" 200 None +2025-03-08 14:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3497?force=true HTTP/1.1" 200 None +2025-03-08 14:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3496?force=true HTTP/1.1" 200 None +2025-03-08 14:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3495?force=true HTTP/1.1" 200 None +2025-03-08 14:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3494?force=true HTTP/1.1" 200 None +2025-03-08 14:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3493?force=true HTTP/1.1" 200 None +2025-03-08 14:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3492?force=true HTTP/1.1" 200 None +2025-03-08 14:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3491?force=true HTTP/1.1" 200 None +2025-03-08 14:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3490?force=true HTTP/1.1" 200 None +2025-03-08 14:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3489?force=true HTTP/1.1" 200 None +2025-03-08 14:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3488?force=true HTTP/1.1" 200 None +2025-03-08 14:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3487?force=true HTTP/1.1" 200 None +2025-03-08 14:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3486?force=true HTTP/1.1" 200 None +2025-03-08 14:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3485?force=true HTTP/1.1" 200 None +2025-03-08 14:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3484?force=true HTTP/1.1" 200 None +2025-03-08 14:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3483?force=true HTTP/1.1" 200 None +2025-03-08 14:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3482?force=true HTTP/1.1" 200 None +2025-03-08 14:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3481?force=true HTTP/1.1" 200 None +2025-03-08 14:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3480?force=true HTTP/1.1" 200 None +2025-03-08 14:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3479?force=true HTTP/1.1" 200 None +2025-03-08 14:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3478?force=true HTTP/1.1" 200 None +2025-03-08 14:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3477?force=true HTTP/1.1" 200 None +2025-03-08 14:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3476?force=true HTTP/1.1" 200 None +2025-03-08 14:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3475?force=true HTTP/1.1" 200 None +2025-03-08 14:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3474?force=true HTTP/1.1" 200 None +2025-03-08 14:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3473?force=true HTTP/1.1" 200 None +2025-03-08 14:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3472?force=true HTTP/1.1" 200 None +2025-03-08 14:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3471?force=true HTTP/1.1" 200 None +2025-03-08 14:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3470?force=true HTTP/1.1" 200 None +2025-03-08 14:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3469?force=true HTTP/1.1" 200 None +2025-03-08 14:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3468?force=true HTTP/1.1" 200 None +2025-03-08 14:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3467?force=true HTTP/1.1" 200 None +2025-03-08 14:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3466?force=true HTTP/1.1" 200 None +2025-03-08 14:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3465?force=true HTTP/1.1" 200 None +2025-03-08 14:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3464?force=true HTTP/1.1" 200 None +2025-03-08 14:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3463?force=true HTTP/1.1" 200 None +2025-03-08 14:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3462?force=true HTTP/1.1" 200 None +2025-03-08 14:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3461?force=true HTTP/1.1" 200 None +2025-03-08 14:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3460?force=true HTTP/1.1" 200 None +2025-03-08 14:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3459?force=true HTTP/1.1" 200 None +2025-03-08 14:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3458?force=true HTTP/1.1" 200 None +2025-03-08 14:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3457?force=true HTTP/1.1" 200 None +2025-03-08 14:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3456?force=true HTTP/1.1" 200 None +2025-03-08 14:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3455?force=true HTTP/1.1" 200 None +2025-03-08 14:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3454?force=true HTTP/1.1" 200 None +2025-03-08 14:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3453?force=true HTTP/1.1" 200 None +2025-03-08 14:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3452?force=true HTTP/1.1" 200 None +2025-03-08 14:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3451?force=true HTTP/1.1" 200 None +2025-03-08 14:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3450?force=true HTTP/1.1" 200 None +2025-03-08 14:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3449?force=true HTTP/1.1" 200 None +2025-03-08 14:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3448?force=true HTTP/1.1" 200 None +2025-03-08 14:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3447?force=true HTTP/1.1" 200 None +2025-03-08 14:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3446?force=true HTTP/1.1" 200 None +2025-03-08 14:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3445?force=true HTTP/1.1" 200 None +2025-03-08 14:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3444?force=true HTTP/1.1" 200 None +2025-03-08 14:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3443?force=true HTTP/1.1" 200 None +2025-03-08 14:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3442?force=true HTTP/1.1" 200 None +2025-03-08 14:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3441?force=true HTTP/1.1" 200 None +2025-03-08 14:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3440?force=true HTTP/1.1" 200 None +2025-03-08 14:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3439?force=true HTTP/1.1" 200 None +2025-03-08 14:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3438?force=true HTTP/1.1" 200 None +2025-03-08 14:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3437?force=true HTTP/1.1" 200 None +2025-03-08 14:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3436?force=true HTTP/1.1" 200 None +2025-03-08 14:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3435?force=true HTTP/1.1" 200 None +2025-03-08 14:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3434?force=true HTTP/1.1" 200 None +2025-03-08 14:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3433?force=true HTTP/1.1" 200 None +2025-03-08 14:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3432?force=true HTTP/1.1" 200 None +2025-03-08 14:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3431?force=true HTTP/1.1" 200 None +2025-03-08 14:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3430?force=true HTTP/1.1" 200 None +2025-03-08 14:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3429?force=true HTTP/1.1" 200 None +2025-03-08 14:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3428?force=true HTTP/1.1" 200 None +2025-03-08 14:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3427?force=true HTTP/1.1" 200 None +2025-03-08 14:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3426?force=true HTTP/1.1" 200 None +2025-03-08 14:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3425?force=true HTTP/1.1" 200 None +2025-03-08 14:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/30?force=True HTTP/1.1" 200 None +2025-03-08 14:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/28?force=True HTTP/1.1" 200 None +2025-03-08 14:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/32?force=True HTTP/1.1" 200 None +2025-03-08 14:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/27?force=True HTTP/1.1" 200 None +2025-03-08 14:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/29?force=True HTTP/1.1" 200 None +2025-03-08 14:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/31?force=True HTTP/1.1" 200 None +2025-03-08 14:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3638?force=True HTTP/1.1" 200 None +2025-03-08 14:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/356?force=True HTTP/1.1" 200 None +2025-03-08 14:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/358?force=True HTTP/1.1" 200 None +2025-03-08 14:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-08 14:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/357?force=True HTTP/1.1" 200 None +2025-03-08 14:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/352?force=True HTTP/1.1" 200 None +2025-03-08 14:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/351?force=True HTTP/1.1" 200 None +2025-03-08 14:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/355?force=True HTTP/1.1" 200 None +2025-03-08 14:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/353?force=True HTTP/1.1" 200 None +2025-03-08 14:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/354?force=True HTTP/1.1" 200 None +2025-03-08 14:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3639 HTTP/1.1" 200 None +2025-03-08 14:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3640 HTTP/1.1" 200 None +2025-03-08 14:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3641 HTTP/1.1" 200 None +2025-03-08 14:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3642 HTTP/1.1" 200 None +2025-03-08 14:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3643 HTTP/1.1" 200 None +2025-03-08 14:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3644 HTTP/1.1" 200 None +2025-03-08 14:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3645 HTTP/1.1" 200 None +2025-03-08 14:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3646 HTTP/1.1" 200 None +2025-03-08 14:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3647 HTTP/1.1" 200 None +2025-03-08 14:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3648 HTTP/1.1" 200 None +2025-03-08 14:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3649 HTTP/1.1" 200 None +2025-03-08 14:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3650 HTTP/1.1" 200 None +2025-03-08 14:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3651 HTTP/1.1" 200 None +2025-03-08 14:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3652 HTTP/1.1" 200 None +2025-03-08 14:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3653 HTTP/1.1" 200 None +2025-03-08 14:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3654 HTTP/1.1" 200 None +2025-03-08 14:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3655 HTTP/1.1" 200 None +2025-03-08 14:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3656 HTTP/1.1" 200 None +2025-03-08 14:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3657 HTTP/1.1" 200 None +2025-03-08 14:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3658 HTTP/1.1" 200 None +2025-03-08 14:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3659 HTTP/1.1" 200 None +2025-03-08 14:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3660 HTTP/1.1" 200 None +2025-03-08 14:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3661 HTTP/1.1" 200 None +2025-03-08 14:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3662 HTTP/1.1" 200 None +2025-03-08 14:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3663 HTTP/1.1" 200 None +2025-03-08 14:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3664 HTTP/1.1" 200 None +2025-03-08 14:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3665 HTTP/1.1" 200 None +2025-03-08 14:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3666 HTTP/1.1" 200 None +2025-03-08 14:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3667 HTTP/1.1" 200 None +2025-03-08 14:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3668 HTTP/1.1" 200 None +2025-03-08 14:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3669 HTTP/1.1" 200 None +2025-03-08 14:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3670 HTTP/1.1" 200 None +2025-03-08 14:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 502 157 +2025-03-08 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 502 157 +2025-03-08 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-08 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-08 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-08 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-08 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-08 14:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3670?force=true HTTP/1.1" 200 None +2025-03-08 14:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3669?force=true HTTP/1.1" 200 None +2025-03-08 14:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3668?force=true HTTP/1.1" 200 None +2025-03-08 14:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3667?force=true HTTP/1.1" 200 None +2025-03-08 14:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3666?force=true HTTP/1.1" 200 None +2025-03-08 14:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3665?force=true HTTP/1.1" 200 None +2025-03-08 14:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3664?force=true HTTP/1.1" 200 None +2025-03-08 14:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3663?force=true HTTP/1.1" 200 None +2025-03-08 14:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3662?force=true HTTP/1.1" 200 None +2025-03-08 14:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3661?force=true HTTP/1.1" 200 None +2025-03-08 14:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3660?force=true HTTP/1.1" 200 None +2025-03-08 14:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3659?force=true HTTP/1.1" 200 None +2025-03-08 14:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3658?force=true HTTP/1.1" 200 None +2025-03-08 14:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3657?force=true HTTP/1.1" 200 None +2025-03-08 14:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3656?force=true HTTP/1.1" 200 None +2025-03-08 14:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3655?force=true HTTP/1.1" 200 None +2025-03-08 14:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3654?force=true HTTP/1.1" 200 None +2025-03-08 14:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3653?force=true HTTP/1.1" 200 None +2025-03-08 14:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3652?force=true HTTP/1.1" 200 None +2025-03-08 14:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3651?force=true HTTP/1.1" 200 None +2025-03-08 14:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3650?force=true HTTP/1.1" 200 None +2025-03-08 14:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3649?force=true HTTP/1.1" 200 None +2025-03-08 14:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3648?force=true HTTP/1.1" 200 None +2025-03-08 14:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3647?force=true HTTP/1.1" 200 None +2025-03-08 14:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3646?force=true HTTP/1.1" 200 None +2025-03-08 14:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3645?force=true HTTP/1.1" 200 None +2025-03-08 14:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3644?force=true HTTP/1.1" 200 None +2025-03-08 14:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3643?force=true HTTP/1.1" 200 None +2025-03-08 14:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3642?force=true HTTP/1.1" 200 None +2025-03-08 14:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3641?force=true HTTP/1.1" 200 None +2025-03-08 14:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3640?force=true HTTP/1.1" 200 None +2025-03-08 14:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3639?force=true HTTP/1.1" 200 None +2025-03-08 14:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-08 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3671 HTTP/1.1" 200 None +2025-03-08 14:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3672 HTTP/1.1" 200 None +2025-03-08 14:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3673 HTTP/1.1" 200 None +2025-03-08 14:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3674 HTTP/1.1" 200 None +2025-03-08 14:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3675 HTTP/1.1" 200 None +2025-03-08 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3676 HTTP/1.1" 200 None +2025-03-08 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3677 HTTP/1.1" 200 None +2025-03-08 14:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3678 HTTP/1.1" 200 None +2025-03-08 14:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3679 HTTP/1.1" 200 None +2025-03-08 14:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3680 HTTP/1.1" 200 None +2025-03-08 14:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3681 HTTP/1.1" 200 None +2025-03-08 14:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3682 HTTP/1.1" 200 None +2025-03-08 14:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3683 HTTP/1.1" 200 None +2025-03-08 14:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3684 HTTP/1.1" 200 None +2025-03-08 14:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3685 HTTP/1.1" 200 None +2025-03-08 14:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3686 HTTP/1.1" 200 None +2025-03-08 14:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3687 HTTP/1.1" 200 None +2025-03-08 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3688 HTTP/1.1" 200 None +2025-03-08 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3689 HTTP/1.1" 200 None +2025-03-08 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3690 HTTP/1.1" 200 None +2025-03-08 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3691 HTTP/1.1" 200 None +2025-03-08 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3692 HTTP/1.1" 200 None +2025-03-08 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3693 HTTP/1.1" 200 None +2025-03-08 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3694 HTTP/1.1" 200 None +2025-03-08 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3695 HTTP/1.1" 200 None +2025-03-08 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3696 HTTP/1.1" 200 None +2025-03-08 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3697 HTTP/1.1" 200 None +2025-03-08 14:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3698 HTTP/1.1" 200 None +2025-03-08 14:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3699 HTTP/1.1" 200 None +2025-03-08 14:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3700 HTTP/1.1" 200 None +2025-03-08 14:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3701 HTTP/1.1" 200 None +2025-03-08 14:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3702 HTTP/1.1" 200 None +2025-03-08 14:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3703 HTTP/1.1" 200 None +2025-03-08 14:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3704 HTTP/1.1" 200 None +2025-03-08 14:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3705 HTTP/1.1" 200 None +2025-03-08 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3706 HTTP/1.1" 200 None +2025-03-08 14:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3707 HTTP/1.1" 200 None +2025-03-08 14:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3708 HTTP/1.1" 200 None +2025-03-08 14:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3709 HTTP/1.1" 200 None +2025-03-08 14:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3710 HTTP/1.1" 200 None +2025-03-08 14:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3711 HTTP/1.1" 200 None +2025-03-08 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3712 HTTP/1.1" 200 None +2025-03-08 14:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3713 HTTP/1.1" 200 None +2025-03-08 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3714 HTTP/1.1" 200 None +2025-03-08 14:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3715 HTTP/1.1" 200 None +2025-03-08 14:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3716 HTTP/1.1" 200 None +2025-03-08 14:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3717 HTTP/1.1" 200 None +2025-03-08 14:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3718 HTTP/1.1" 200 None +2025-03-08 14:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3719 HTTP/1.1" 200 None +2025-03-08 14:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3720 HTTP/1.1" 200 None +2025-03-08 14:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3721 HTTP/1.1" 200 None +2025-03-08 14:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3722 HTTP/1.1" 200 None +2025-03-08 14:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3723 HTTP/1.1" 200 None +2025-03-08 14:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3724 HTTP/1.1" 200 None +2025-03-08 14:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3725 HTTP/1.1" 200 None +2025-03-08 14:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3726 HTTP/1.1" 200 None +2025-03-08 14:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3727 HTTP/1.1" 200 None +2025-03-08 14:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3728 HTTP/1.1" 200 None +2025-03-08 14:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3729 HTTP/1.1" 200 None +2025-03-08 14:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3730 HTTP/1.1" 200 None +2025-03-08 14:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3731 HTTP/1.1" 200 None +2025-03-08 14:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3732 HTTP/1.1" 200 None +2025-03-08 14:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3733 HTTP/1.1" 200 None +2025-03-08 14:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3734 HTTP/1.1" 200 None +2025-03-08 14:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3735 HTTP/1.1" 200 None +2025-03-08 14:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3736 HTTP/1.1" 200 None +2025-03-08 14:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3737 HTTP/1.1" 200 None +2025-03-08 14:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3738 HTTP/1.1" 200 None +2025-03-08 14:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3739 HTTP/1.1" 200 None +2025-03-08 14:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3740 HTTP/1.1" 200 None +2025-03-08 14:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3741 HTTP/1.1" 200 None +2025-03-08 14:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3742 HTTP/1.1" 200 None +2025-03-08 14:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3743 HTTP/1.1" 200 None +2025-03-08 14:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3744 HTTP/1.1" 200 None +2025-03-08 14:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3745 HTTP/1.1" 200 None +2025-03-08 14:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3746 HTTP/1.1" 200 None +2025-03-08 14:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3747 HTTP/1.1" 200 None +2025-03-08 14:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3748 HTTP/1.1" 200 None +2025-03-08 14:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3749 HTTP/1.1" 200 None +2025-03-08 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3750 HTTP/1.1" 200 None +2025-03-08 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3751 HTTP/1.1" 200 None +2025-03-08 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3752 HTTP/1.1" 200 None +2025-03-08 14:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3753 HTTP/1.1" 200 None +2025-03-08 14:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3754 HTTP/1.1" 200 None +2025-03-08 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3755 HTTP/1.1" 200 None +2025-03-08 14:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3756 HTTP/1.1" 200 None +2025-03-08 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3757 HTTP/1.1" 200 None +2025-03-08 14:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3758 HTTP/1.1" 200 None +2025-03-08 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3759 HTTP/1.1" 200 None +2025-03-08 14:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3760 HTTP/1.1" 200 None +2025-03-08 14:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3761 HTTP/1.1" 200 None +2025-03-08 14:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3762 HTTP/1.1" 200 None +2025-03-08 14:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3763 HTTP/1.1" 200 None +2025-03-08 14:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3764 HTTP/1.1" 200 None +2025-03-08 14:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3765 HTTP/1.1" 200 None +2025-03-08 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3766 HTTP/1.1" 200 None +2025-03-08 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3767 HTTP/1.1" 200 None +2025-03-08 14:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3768 HTTP/1.1" 200 None +2025-03-08 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3769 HTTP/1.1" 200 None +2025-03-08 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3770 HTTP/1.1" 200 None +2025-03-08 14:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-08 14:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3771 HTTP/1.1" 200 None +2025-03-08 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3772 HTTP/1.1" 200 None +2025-03-08 14:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3773 HTTP/1.1" 200 None +2025-03-08 14:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3774 HTTP/1.1" 200 None +2025-03-08 14:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3775 HTTP/1.1" 200 None +2025-03-08 14:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3776 HTTP/1.1" 200 None +2025-03-08 14:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3777 HTTP/1.1" 200 None +2025-03-08 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3778 HTTP/1.1" 200 None +2025-03-08 14:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3779 HTTP/1.1" 200 None +2025-03-08 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3780 HTTP/1.1" 200 None +2025-03-08 14:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3781 HTTP/1.1" 200 None +2025-03-08 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3782 HTTP/1.1" 200 None +2025-03-08 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3783 HTTP/1.1" 200 None +2025-03-08 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3784 HTTP/1.1" 200 None +2025-03-08 14:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3785 HTTP/1.1" 200 None +2025-03-08 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3786 HTTP/1.1" 200 None +2025-03-08 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3787 HTTP/1.1" 200 None +2025-03-08 14:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3788 HTTP/1.1" 200 None +2025-03-08 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3789 HTTP/1.1" 200 None +2025-03-08 14:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3790 HTTP/1.1" 200 None +2025-03-08 14:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3791 HTTP/1.1" 200 None +2025-03-08 14:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3792 HTTP/1.1" 200 None +2025-03-08 14:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3793 HTTP/1.1" 200 None +2025-03-08 14:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3794 HTTP/1.1" 200 None +2025-03-08 14:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3795 HTTP/1.1" 200 None +2025-03-08 14:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3796 HTTP/1.1" 200 None +2025-03-08 14:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3797 HTTP/1.1" 200 None +2025-03-08 14:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3798 HTTP/1.1" 200 None +2025-03-08 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3799 HTTP/1.1" 200 None +2025-03-08 14:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3800 HTTP/1.1" 200 None +2025-03-08 14:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3801 HTTP/1.1" 200 None +2025-03-08 14:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3802 HTTP/1.1" 200 None +2025-03-08 14:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3803 HTTP/1.1" 200 None +2025-03-08 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3804 HTTP/1.1" 200 None +2025-03-08 14:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3805 HTTP/1.1" 200 None +2025-03-08 14:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3806 HTTP/1.1" 200 None +2025-03-08 14:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3807 HTTP/1.1" 200 None +2025-03-08 14:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3808 HTTP/1.1" 200 None +2025-03-08 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3809 HTTP/1.1" 200 None +2025-03-08 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3810 HTTP/1.1" 200 None +2025-03-08 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3811 HTTP/1.1" 200 None +2025-03-08 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3812 HTTP/1.1" 200 None +2025-03-08 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-08 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3813 HTTP/1.1" 200 None +2025-03-08 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3674 HTTP/1.1" 200 None +2025-03-08 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/367 HTTP/1.1" 200 None +2025-03-08 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/368 HTTP/1.1" 200 None +2025-03-08 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3671 HTTP/1.1" 200 None +2025-03-08 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/368 HTTP/1.1" 200 None +2025-03-08 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3701 HTTP/1.1" 200 None +2025-03-08 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/369 HTTP/1.1" 200 None +2025-03-08 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3719 HTTP/1.1" 200 None +2025-03-08 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/370 HTTP/1.1" 200 None +2025-03-08 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-08 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/371 HTTP/1.1" 400 None +2025-03-08 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-08 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/372 HTTP/1.1" 400 None +2025-03-08 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-08 14:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/373 HTTP/1.1" 400 None +2025-03-08 14:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-08 14:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3723 HTTP/1.1" 200 None +2025-03-08 14:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/374 HTTP/1.1" 200 None +2025-03-08 14:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-08 14:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-08 14:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-08 14:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-08 14:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-08 14:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-08 14:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/36/terms HTTP/1.1" 201 None +2025-03-08 14:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/34/terms HTTP/1.1" 201 None +2025-03-08 14:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/38/terms HTTP/1.1" 201 None +2025-03-08 14:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/38/terms HTTP/1.1" 201 None +2025-03-08 14:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/38/terms HTTP/1.1" 201 None +2025-03-08 14:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/38/terms HTTP/1.1" 400 None +2025-03-08 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/33/terms HTTP/1.1" 201 None +2025-03-08 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/35/terms HTTP/1.1" 201 None +2025-03-08 14:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/37/terms HTTP/1.1" 201 None +2025-03-08 14:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-03-08 14:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 502 157 +2025-03-08 14:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 14:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 14:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 14:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:39:40 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 14:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:41 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 14:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:42 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 14:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:43 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 14:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:43 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 14:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:43 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 14:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:44 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 14:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:44 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 14:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:45 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 14:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:45 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 14:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:45 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 14:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:46 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 14:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:46 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 14:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:47 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 14:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:47 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 14:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:47 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 14:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:48 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 14:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:48 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 14:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:49 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 14:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:49 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 14:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:49 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 14:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:50 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 14:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:50 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 14:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:51 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 14:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:52 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 14:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:57 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 14:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:57 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 14:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:58 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 14:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:58 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 14:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:58 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 14:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:59 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 14:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:39:59 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 14:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:00 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 14:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:00 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 14:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:01 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 14:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:01 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 14:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:02 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 14:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:02 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 14:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:02 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 14:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:03 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 14:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:03 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 14:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:04 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 14:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:04 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 14:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:04 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 14:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:05 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 14:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:05 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 14:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:06 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 14:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:06 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 14:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:07 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 14:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:07 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 14:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:07 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 14:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:08 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 14:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:08 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 14:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:09 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 14:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:09 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 14:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:09 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 14:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:10 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 14:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:10 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 14:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:11 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 14:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:11 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 14:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:12 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 14:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:12 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 14:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:12 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 14:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:13 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 14:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:13 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 14:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:13 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 14:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:14 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 14:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:14 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 14:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:15 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 14:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:15 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 14:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:16 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 14:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:16 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 14:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:17 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 14:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:17 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-08 14:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:17 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 14:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:40:18 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=76, tab_type=local) called +2025-03-08 14:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:19 - INFO - create_for_product(product_id=3837, title=Description, content=La Chope au parfum , nickname=, position=77, tab_type=local) called +2025-03-08 14:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:20 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=78, tab_type=local) called +2025-03-08 14:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:21 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=79, tab_type=local) called +2025-03-08 14:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:21 - INFO - create_for_product(product_id=3837, title=Description, content=La bougie Chope au p, nickname=, position=80, tab_type=local) called +2025-03-08 14:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:22 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=81, tab_type=local) called +2025-03-08 14:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:22 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=82, tab_type=local) called +2025-03-08 14:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:23 - INFO - create_for_product(product_id=3837, title=Description, content=La bougie Chope au p, nickname=, position=83, tab_type=local) called +2025-03-08 14:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:23 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=84, tab_type=local) called +2025-03-08 14:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:24 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=85, tab_type=local) called +2025-03-08 14:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:24 - INFO - create_for_product(product_id=3837, title=Description, content=La Chope au parfum d, nickname=, position=86, tab_type=local) called +2025-03-08 14:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:24 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=87, tab_type=local) called +2025-03-08 14:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:25 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=88, tab_type=local) called +2025-03-08 14:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:25 - INFO - create_for_product(product_id=3837, title=Description, content= La bougie Chope au , nickname=, position=89, tab_type=local) called +2025-03-08 14:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:26 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=90, tab_type=local) called +2025-03-08 14:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:26 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=91, tab_type=local) called +2025-03-08 14:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:27 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=92, tab_type=local) called +2025-03-08 14:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:27 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=93, tab_type=local) called +2025-03-08 14:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:27 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=94, tab_type=local) called +2025-03-08 14:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:28 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=95, tab_type=local) called +2025-03-08 14:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:28 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=96, tab_type=local) called +2025-03-08 14:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:29 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=97, tab_type=local) called +2025-03-08 14:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:29 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=98, tab_type=local) called +2025-03-08 14:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:30 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=99, tab_type=local) called +2025-03-08 14:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:30 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=100, tab_type=local) called +2025-03-08 14:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:30 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=101, tab_type=local) called +2025-03-08 14:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:31 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=102, tab_type=local) called +2025-03-08 14:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:31 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=103, tab_type=local) called +2025-03-08 14:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:32 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=104, tab_type=local) called +2025-03-08 14:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:32 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=105, tab_type=local) called +2025-03-08 14:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:32 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=106, tab_type=local) called +2025-03-08 14:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:33 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=107, tab_type=local) called +2025-03-08 14:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:33 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=108, tab_type=local) called +2025-03-08 14:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:34 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=109, tab_type=local) called +2025-03-08 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:34 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=110, tab_type=local) called +2025-03-08 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:34 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=111, tab_type=local) called +2025-03-08 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:35 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=112, tab_type=local) called +2025-03-08 14:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:35 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=113, tab_type=local) called +2025-03-08 14:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:36 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=114, tab_type=local) called +2025-03-08 14:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:36 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=115, tab_type=local) called +2025-03-08 14:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:37 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=116, tab_type=local) called +2025-03-08 14:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:37 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=117, tab_type=local) called +2025-03-08 14:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:38 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=118, tab_type=local) called +2025-03-08 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:38 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=119, tab_type=local) called +2025-03-08 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:38 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=120, tab_type=local) called +2025-03-08 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:39 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=121, tab_type=local) called +2025-03-08 14:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:39 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=122, tab_type=local) called +2025-03-08 14:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:40 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=123, tab_type=local) called +2025-03-08 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:40 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=124, tab_type=local) called +2025-03-08 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:40 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=125, tab_type=local) called +2025-03-08 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:41 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=126, tab_type=local) called +2025-03-08 14:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:41 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=127, tab_type=local) called +2025-03-08 14:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:42 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=128, tab_type=local) called +2025-03-08 14:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:42 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=129, tab_type=local) called +2025-03-08 14:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:42 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=130, tab_type=local) called +2025-03-08 14:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:43 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=131, tab_type=local) called +2025-03-08 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:43 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=132, tab_type=local) called +2025-03-08 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:43 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=133, tab_type=local) called +2025-03-08 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:44 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=134, tab_type=local) called +2025-03-08 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:44 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=135, tab_type=local) called +2025-03-08 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:45 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=136, tab_type=local) called +2025-03-08 14:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:45 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=137, tab_type=local) called +2025-03-08 14:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:45 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=138, tab_type=local) called +2025-03-08 14:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:46 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=139, tab_type=local) called +2025-03-08 14:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:46 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=140, tab_type=local) called +2025-03-08 14:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:47 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=141, tab_type=local) called +2025-03-08 14:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:47 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=142, tab_type=local) called +2025-03-08 14:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:47 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=143, tab_type=local) called +2025-03-08 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:48 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=144, tab_type=local) called +2025-03-08 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:48 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=145, tab_type=local) called +2025-03-08 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:49 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=146, tab_type=local) called +2025-03-08 14:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:49 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=147, tab_type=local) called +2025-03-08 14:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:49 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=148, tab_type=local) called +2025-03-08 14:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:50 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=149, tab_type=local) called +2025-03-08 14:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:50 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=150, tab_type=local) called +2025-03-08 14:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 14:40:51 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=151, tab_type=local) called +2025-03-08 14:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:52 - INFO - create_for_product(product_id=3836, title=Description, content=La Chope au parfum , nickname=, position=152, tab_type=local) called +2025-03-08 14:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:53 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=153, tab_type=local) called +2025-03-08 14:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:54 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=154, tab_type=local) called +2025-03-08 14:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:54 - INFO - create_for_product(product_id=3836, title=Description, content=La bougie Chope au p, nickname=, position=155, tab_type=local) called +2025-03-08 14:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:55 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=156, tab_type=local) called +2025-03-08 14:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:55 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=157, tab_type=local) called +2025-03-08 14:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:55 - INFO - create_for_product(product_id=3836, title=Description, content=La bougie Chope au p, nickname=, position=158, tab_type=local) called +2025-03-08 14:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:56 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=159, tab_type=local) called +2025-03-08 14:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:56 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=160, tab_type=local) called +2025-03-08 14:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:57 - INFO - create_for_product(product_id=3836, title=Description, content=La Chope au parfum d, nickname=, position=161, tab_type=local) called +2025-03-08 14:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:57 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=162, tab_type=local) called +2025-03-08 14:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:58 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=163, tab_type=local) called +2025-03-08 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:58 - INFO - create_for_product(product_id=3836, title=Description, content= La bougie Chope au , nickname=, position=164, tab_type=local) called +2025-03-08 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:58 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=165, tab_type=local) called +2025-03-08 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:59 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=166, tab_type=local) called +2025-03-08 14:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:40:59 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=167, tab_type=local) called +2025-03-08 14:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:00 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=168, tab_type=local) called +2025-03-08 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:00 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=169, tab_type=local) called +2025-03-08 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:00 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=170, tab_type=local) called +2025-03-08 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:01 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=171, tab_type=local) called +2025-03-08 14:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:01 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=172, tab_type=local) called +2025-03-08 14:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:01 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=173, tab_type=local) called +2025-03-08 14:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:02 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=174, tab_type=local) called +2025-03-08 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:02 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=175, tab_type=local) called +2025-03-08 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:03 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=176, tab_type=local) called +2025-03-08 14:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:03 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=177, tab_type=local) called +2025-03-08 14:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:04 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=178, tab_type=local) called +2025-03-08 14:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:04 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=179, tab_type=local) called +2025-03-08 14:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:04 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=180, tab_type=local) called +2025-03-08 14:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:05 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=181, tab_type=local) called +2025-03-08 14:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:05 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=182, tab_type=local) called +2025-03-08 14:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:06 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=183, tab_type=local) called +2025-03-08 14:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:06 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=184, tab_type=local) called +2025-03-08 14:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:06 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=185, tab_type=local) called +2025-03-08 14:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:07 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=186, tab_type=local) called +2025-03-08 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:07 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=187, tab_type=local) called +2025-03-08 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:08 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=188, tab_type=local) called +2025-03-08 14:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:08 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=189, tab_type=local) called +2025-03-08 14:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:09 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=190, tab_type=local) called +2025-03-08 14:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:09 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=191, tab_type=local) called +2025-03-08 14:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:09 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=192, tab_type=local) called +2025-03-08 14:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:10 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=193, tab_type=local) called +2025-03-08 14:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:10 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=194, tab_type=local) called +2025-03-08 14:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:11 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=195, tab_type=local) called +2025-03-08 14:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:11 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=196, tab_type=local) called +2025-03-08 14:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:12 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=197, tab_type=local) called +2025-03-08 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:12 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=198, tab_type=local) called +2025-03-08 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:12 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=199, tab_type=local) called +2025-03-08 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:13 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=200, tab_type=local) called +2025-03-08 14:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:13 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=201, tab_type=local) called +2025-03-08 14:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:14 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=202, tab_type=local) called +2025-03-08 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:14 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=203, tab_type=local) called +2025-03-08 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:14 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=204, tab_type=local) called +2025-03-08 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:15 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=205, tab_type=local) called +2025-03-08 14:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:15 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=206, tab_type=local) called +2025-03-08 14:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:16 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=207, tab_type=local) called +2025-03-08 14:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:16 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=208, tab_type=local) called +2025-03-08 14:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:16 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=209, tab_type=local) called +2025-03-08 14:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:17 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=210, tab_type=local) called +2025-03-08 14:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:17 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=211, tab_type=local) called +2025-03-08 14:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:18 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=212, tab_type=local) called +2025-03-08 14:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:18 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=213, tab_type=local) called +2025-03-08 14:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:18 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=214, tab_type=local) called +2025-03-08 14:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:19 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=215, tab_type=local) called +2025-03-08 14:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:19 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=216, tab_type=local) called +2025-03-08 14:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:20 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=217, tab_type=local) called +2025-03-08 14:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:20 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=218, tab_type=local) called +2025-03-08 14:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:21 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=219, tab_type=local) called +2025-03-08 14:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:21 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=220, tab_type=local) called +2025-03-08 14:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:21 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=221, tab_type=local) called +2025-03-08 14:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:22 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=222, tab_type=local) called +2025-03-08 14:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:22 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=223, tab_type=local) called +2025-03-08 14:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:23 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=224, tab_type=local) called +2025-03-08 14:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:23 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=225, tab_type=local) called +2025-03-08 14:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 14:41:24 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=226, tab_type=local) called +2025-03-08 14:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:25 - INFO - create_for_product(product_id=3835, title=Description, content=La Chope au parfum , nickname=, position=227, tab_type=local) called +2025-03-08 14:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:26 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=228, tab_type=local) called +2025-03-08 14:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:27 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=229, tab_type=local) called +2025-03-08 14:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:28 - INFO - create_for_product(product_id=3835, title=Description, content=La bougie Chope au p, nickname=, position=230, tab_type=local) called +2025-03-08 14:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:28 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=231, tab_type=local) called +2025-03-08 14:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:28 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=232, tab_type=local) called +2025-03-08 14:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:31 - INFO - create_for_product(product_id=3835, title=Description, content=La bougie Chope au p, nickname=, position=233, tab_type=local) called +2025-03-08 14:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:31 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=234, tab_type=local) called +2025-03-08 14:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:31 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=235, tab_type=local) called +2025-03-08 14:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:32 - INFO - create_for_product(product_id=3835, title=Description, content=La Chope au parfum d, nickname=, position=236, tab_type=local) called +2025-03-08 14:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:32 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=237, tab_type=local) called +2025-03-08 14:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:33 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=238, tab_type=local) called +2025-03-08 14:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:33 - INFO - create_for_product(product_id=3835, title=Description, content= La bougie Chope au , nickname=, position=239, tab_type=local) called +2025-03-08 14:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:33 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=240, tab_type=local) called +2025-03-08 14:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:34 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=241, tab_type=local) called +2025-03-08 14:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:34 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=242, tab_type=local) called +2025-03-08 14:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:35 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=243, tab_type=local) called +2025-03-08 14:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:35 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=244, tab_type=local) called +2025-03-08 14:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:35 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=245, tab_type=local) called +2025-03-08 14:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:36 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=246, tab_type=local) called +2025-03-08 14:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:36 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=247, tab_type=local) called +2025-03-08 14:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:37 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=248, tab_type=local) called +2025-03-08 14:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:37 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=249, tab_type=local) called +2025-03-08 14:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:38 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=250, tab_type=local) called +2025-03-08 14:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:38 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=251, tab_type=local) called +2025-03-08 14:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:39 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=252, tab_type=local) called +2025-03-08 14:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:39 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=253, tab_type=local) called +2025-03-08 14:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:40 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=254, tab_type=local) called +2025-03-08 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:40 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=255, tab_type=local) called +2025-03-08 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:40 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=256, tab_type=local) called +2025-03-08 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:41 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=257, tab_type=local) called +2025-03-08 14:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:41 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=258, tab_type=local) called +2025-03-08 14:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:42 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=259, tab_type=local) called +2025-03-08 14:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:42 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=260, tab_type=local) called +2025-03-08 14:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:42 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=261, tab_type=local) called +2025-03-08 14:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:43 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=262, tab_type=local) called +2025-03-08 14:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:43 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=263, tab_type=local) called +2025-03-08 14:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:44 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=264, tab_type=local) called +2025-03-08 14:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:44 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=265, tab_type=local) called +2025-03-08 14:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:45 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=266, tab_type=local) called +2025-03-08 14:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:45 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=267, tab_type=local) called +2025-03-08 14:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:45 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=268, tab_type=local) called +2025-03-08 14:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:46 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=269, tab_type=local) called +2025-03-08 14:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:46 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=270, tab_type=local) called +2025-03-08 14:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:47 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=271, tab_type=local) called +2025-03-08 14:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:47 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=272, tab_type=local) called +2025-03-08 14:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:48 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=273, tab_type=local) called +2025-03-08 14:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:49 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=274, tab_type=local) called +2025-03-08 14:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:49 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=275, tab_type=local) called +2025-03-08 14:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:50 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=276, tab_type=local) called +2025-03-08 14:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:51 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=277, tab_type=local) called +2025-03-08 14:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:51 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=278, tab_type=local) called +2025-03-08 14:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:52 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=279, tab_type=local) called +2025-03-08 14:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:52 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=280, tab_type=local) called +2025-03-08 14:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:53 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=281, tab_type=local) called +2025-03-08 14:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:53 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=282, tab_type=local) called +2025-03-08 14:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:54 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=283, tab_type=local) called +2025-03-08 14:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:54 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=284, tab_type=local) called +2025-03-08 14:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:55 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=285, tab_type=local) called +2025-03-08 14:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:55 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=286, tab_type=local) called +2025-03-08 14:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:55 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=287, tab_type=local) called +2025-03-08 14:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:56 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=288, tab_type=local) called +2025-03-08 14:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:56 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=289, tab_type=local) called +2025-03-08 14:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:57 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=290, tab_type=local) called +2025-03-08 14:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:57 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=291, tab_type=local) called +2025-03-08 14:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:58 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=292, tab_type=local) called +2025-03-08 14:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:58 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=293, tab_type=local) called +2025-03-08 14:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:41:59 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=294, tab_type=local) called +2025-03-08 14:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:00 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=295, tab_type=local) called +2025-03-08 14:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:00 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=296, tab_type=local) called +2025-03-08 14:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:01 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=297, tab_type=local) called +2025-03-08 14:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:01 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=298, tab_type=local) called +2025-03-08 14:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:01 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=299, tab_type=local) called +2025-03-08 14:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:02 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=300, tab_type=local) called +2025-03-08 14:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 14:42:02 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=301, tab_type=local) called +2025-03-08 14:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:03 - INFO - create_for_product(product_id=3834, title=Description, content=La Chope au parfum , nickname=, position=302, tab_type=local) called +2025-03-08 14:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:05 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=303, tab_type=local) called +2025-03-08 14:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:06 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=304, tab_type=local) called +2025-03-08 14:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:06 - INFO - create_for_product(product_id=3834, title=Description, content=La bougie Chope au p, nickname=, position=305, tab_type=local) called +2025-03-08 14:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:07 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=306, tab_type=local) called +2025-03-08 14:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:08 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=307, tab_type=local) called +2025-03-08 14:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:08 - INFO - create_for_product(product_id=3834, title=Description, content=La bougie Chope au p, nickname=, position=308, tab_type=local) called +2025-03-08 14:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:10 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=309, tab_type=local) called +2025-03-08 14:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:12 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=310, tab_type=local) called +2025-03-08 14:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:12 - INFO - create_for_product(product_id=3834, title=Description, content=La Chope au parfum d, nickname=, position=311, tab_type=local) called +2025-03-08 14:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:12 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=312, tab_type=local) called +2025-03-08 14:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:13 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=313, tab_type=local) called +2025-03-08 14:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:13 - INFO - create_for_product(product_id=3834, title=Description, content= La bougie Chope au , nickname=, position=314, tab_type=local) called +2025-03-08 14:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:14 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=315, tab_type=local) called +2025-03-08 14:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:14 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=316, tab_type=local) called +2025-03-08 14:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:15 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=317, tab_type=local) called +2025-03-08 14:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:15 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=318, tab_type=local) called +2025-03-08 14:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:16 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=319, tab_type=local) called +2025-03-08 14:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:16 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=320, tab_type=local) called +2025-03-08 14:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:17 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=321, tab_type=local) called +2025-03-08 14:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:17 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=322, tab_type=local) called +2025-03-08 14:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:18 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=323, tab_type=local) called +2025-03-08 14:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:19 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=324, tab_type=local) called +2025-03-08 14:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:19 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=325, tab_type=local) called +2025-03-08 14:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:20 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=326, tab_type=local) called +2025-03-08 14:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:23 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=327, tab_type=local) called +2025-03-08 14:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:25 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=328, tab_type=local) called +2025-03-08 14:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:25 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=329, tab_type=local) called +2025-03-08 14:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:25 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=330, tab_type=local) called +2025-03-08 14:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:26 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=331, tab_type=local) called +2025-03-08 14:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:26 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=332, tab_type=local) called +2025-03-08 14:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:27 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=333, tab_type=local) called +2025-03-08 14:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:27 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=334, tab_type=local) called +2025-03-08 14:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:28 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=335, tab_type=local) called +2025-03-08 14:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:28 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=336, tab_type=local) called +2025-03-08 14:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:28 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=337, tab_type=local) called +2025-03-08 14:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:29 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=338, tab_type=local) called +2025-03-08 14:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:29 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=339, tab_type=local) called +2025-03-08 14:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:30 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=340, tab_type=local) called +2025-03-08 14:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:30 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=341, tab_type=local) called +2025-03-08 14:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:31 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=342, tab_type=local) called +2025-03-08 14:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:31 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=343, tab_type=local) called +2025-03-08 14:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:32 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=344, tab_type=local) called +2025-03-08 14:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:32 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=345, tab_type=local) called +2025-03-08 14:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:33 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=346, tab_type=local) called +2025-03-08 14:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:33 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=347, tab_type=local) called +2025-03-08 14:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:34 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=348, tab_type=local) called +2025-03-08 14:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:34 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=349, tab_type=local) called +2025-03-08 14:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:35 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=350, tab_type=local) called +2025-03-08 14:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:35 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=351, tab_type=local) called +2025-03-08 14:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:36 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=352, tab_type=local) called +2025-03-08 14:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:37 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=353, tab_type=local) called +2025-03-08 14:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:37 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=354, tab_type=local) called +2025-03-08 14:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:38 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=355, tab_type=local) called +2025-03-08 14:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:38 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=356, tab_type=local) called +2025-03-08 14:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:39 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=357, tab_type=local) called +2025-03-08 14:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:39 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=358, tab_type=local) called +2025-03-08 14:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:40 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=359, tab_type=local) called +2025-03-08 14:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:40 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=360, tab_type=local) called +2025-03-08 14:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:41 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=361, tab_type=local) called +2025-03-08 14:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:41 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=362, tab_type=local) called +2025-03-08 14:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:42 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=363, tab_type=local) called +2025-03-08 14:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:42 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=364, tab_type=local) called +2025-03-08 14:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:43 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=365, tab_type=local) called +2025-03-08 14:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:43 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=366, tab_type=local) called +2025-03-08 14:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:44 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=367, tab_type=local) called +2025-03-08 14:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:44 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=368, tab_type=local) called +2025-03-08 14:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:45 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=369, tab_type=local) called +2025-03-08 14:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:45 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=370, tab_type=local) called +2025-03-08 14:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:46 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=371, tab_type=local) called +2025-03-08 14:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:46 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=372, tab_type=local) called +2025-03-08 14:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:47 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=373, tab_type=local) called +2025-03-08 14:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:47 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=374, tab_type=local) called +2025-03-08 14:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:48 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=375, tab_type=local) called +2025-03-08 14:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 14:42:48 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=376, tab_type=local) called +2025-03-08 14:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:50 - INFO - create_for_product(product_id=3833, title=Description, content=La Chope au parfum , nickname=, position=377, tab_type=local) called +2025-03-08 14:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:51 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=378, tab_type=local) called +2025-03-08 14:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:52 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=379, tab_type=local) called +2025-03-08 14:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:53 - INFO - create_for_product(product_id=3833, title=Description, content=La bougie Chope au p, nickname=, position=380, tab_type=local) called +2025-03-08 14:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:53 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=381, tab_type=local) called +2025-03-08 14:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:54 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=382, tab_type=local) called +2025-03-08 14:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:54 - INFO - create_for_product(product_id=3833, title=Description, content=La bougie Chope au p, nickname=, position=383, tab_type=local) called +2025-03-08 14:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:55 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=384, tab_type=local) called +2025-03-08 14:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:56 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=385, tab_type=local) called +2025-03-08 14:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:56 - INFO - create_for_product(product_id=3833, title=Description, content=La Chope au parfum d, nickname=, position=386, tab_type=local) called +2025-03-08 14:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:57 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=387, tab_type=local) called +2025-03-08 14:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:57 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=388, tab_type=local) called +2025-03-08 14:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:58 - INFO - create_for_product(product_id=3833, title=Description, content= La bougie Chope au , nickname=, position=389, tab_type=local) called +2025-03-08 14:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:58 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=390, tab_type=local) called +2025-03-08 14:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:59 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=391, tab_type=local) called +2025-03-08 14:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:42:59 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=392, tab_type=local) called +2025-03-08 14:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:00 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=393, tab_type=local) called +2025-03-08 14:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:00 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=394, tab_type=local) called +2025-03-08 14:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:01 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=395, tab_type=local) called +2025-03-08 14:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:01 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=396, tab_type=local) called +2025-03-08 14:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:02 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=397, tab_type=local) called +2025-03-08 14:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:02 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=398, tab_type=local) called +2025-03-08 14:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:03 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=399, tab_type=local) called +2025-03-08 14:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:03 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=400, tab_type=local) called +2025-03-08 14:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:04 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=401, tab_type=local) called +2025-03-08 14:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:04 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=402, tab_type=local) called +2025-03-08 14:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:04 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=403, tab_type=local) called +2025-03-08 14:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:05 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=404, tab_type=local) called +2025-03-08 14:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:05 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=405, tab_type=local) called +2025-03-08 14:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:06 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=406, tab_type=local) called +2025-03-08 14:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:06 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=407, tab_type=local) called +2025-03-08 14:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:07 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=408, tab_type=local) called +2025-03-08 14:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:07 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=409, tab_type=local) called +2025-03-08 14:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:07 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=410, tab_type=local) called +2025-03-08 14:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:08 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=411, tab_type=local) called +2025-03-08 14:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:09 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=412, tab_type=local) called +2025-03-08 14:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:09 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=413, tab_type=local) called +2025-03-08 14:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:10 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=414, tab_type=local) called +2025-03-08 14:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:10 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=415, tab_type=local) called +2025-03-08 14:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:12 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=416, tab_type=local) called +2025-03-08 14:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:12 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=417, tab_type=local) called +2025-03-08 14:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:15 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=418, tab_type=local) called +2025-03-08 14:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:16 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=419, tab_type=local) called +2025-03-08 14:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:16 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=420, tab_type=local) called +2025-03-08 14:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:17 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=421, tab_type=local) called +2025-03-08 14:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:17 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=422, tab_type=local) called +2025-03-08 14:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:18 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=423, tab_type=local) called +2025-03-08 14:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:18 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=424, tab_type=local) called +2025-03-08 14:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:18 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=425, tab_type=local) called +2025-03-08 14:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:19 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=426, tab_type=local) called +2025-03-08 14:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:19 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=427, tab_type=local) called +2025-03-08 14:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:19 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=428, tab_type=local) called +2025-03-08 14:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:20 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=429, tab_type=local) called +2025-03-08 14:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:20 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=430, tab_type=local) called +2025-03-08 14:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:21 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=431, tab_type=local) called +2025-03-08 14:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:21 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=432, tab_type=local) called +2025-03-08 14:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:22 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=433, tab_type=local) called +2025-03-08 14:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:23 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=434, tab_type=local) called +2025-03-08 14:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:23 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=435, tab_type=local) called +2025-03-08 14:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:24 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=436, tab_type=local) called +2025-03-08 14:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:24 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=437, tab_type=local) called +2025-03-08 14:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:25 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=438, tab_type=local) called +2025-03-08 14:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:25 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=439, tab_type=local) called +2025-03-08 14:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:26 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=440, tab_type=local) called +2025-03-08 14:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:26 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=441, tab_type=local) called +2025-03-08 14:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:27 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=442, tab_type=local) called +2025-03-08 14:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:27 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=443, tab_type=local) called +2025-03-08 14:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:28 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=444, tab_type=local) called +2025-03-08 14:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:28 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=445, tab_type=local) called +2025-03-08 14:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:28 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=446, tab_type=local) called +2025-03-08 14:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:29 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=447, tab_type=local) called +2025-03-08 14:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:30 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=448, tab_type=local) called +2025-03-08 14:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:30 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=449, tab_type=local) called +2025-03-08 14:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:31 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=450, tab_type=local) called +2025-03-08 14:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 14:43:31 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=451, tab_type=local) called +2025-03-08 14:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:32 - INFO - create_for_product(product_id=3832, title=Description, content=La Chope au parfum , nickname=, position=452, tab_type=local) called +2025-03-08 14:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:33 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=453, tab_type=local) called +2025-03-08 14:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:34 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=454, tab_type=local) called +2025-03-08 14:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:35 - INFO - create_for_product(product_id=3832, title=Description, content=La bougie Chope au p, nickname=, position=455, tab_type=local) called +2025-03-08 14:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:35 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=456, tab_type=local) called +2025-03-08 14:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:35 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=457, tab_type=local) called +2025-03-08 14:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:36 - INFO - create_for_product(product_id=3832, title=Description, content=La bougie Chope au p, nickname=, position=458, tab_type=local) called +2025-03-08 14:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:36 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=459, tab_type=local) called +2025-03-08 14:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:37 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=460, tab_type=local) called +2025-03-08 14:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:38 - INFO - create_for_product(product_id=3832, title=Description, content=La Chope au parfum d, nickname=, position=461, tab_type=local) called +2025-03-08 14:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:38 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=462, tab_type=local) called +2025-03-08 14:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:39 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=463, tab_type=local) called +2025-03-08 14:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:40 - INFO - create_for_product(product_id=3832, title=Description, content= La bougie Chope au , nickname=, position=464, tab_type=local) called +2025-03-08 14:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:43 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=465, tab_type=local) called +2025-03-08 14:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:43 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=466, tab_type=local) called +2025-03-08 14:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:44 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=467, tab_type=local) called +2025-03-08 14:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:44 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=468, tab_type=local) called +2025-03-08 14:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:45 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=469, tab_type=local) called +2025-03-08 14:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:45 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=470, tab_type=local) called +2025-03-08 14:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:46 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=471, tab_type=local) called +2025-03-08 14:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:46 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=472, tab_type=local) called +2025-03-08 14:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:47 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=473, tab_type=local) called +2025-03-08 14:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:47 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=474, tab_type=local) called +2025-03-08 14:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:48 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=475, tab_type=local) called +2025-03-08 14:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:48 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=476, tab_type=local) called +2025-03-08 14:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:49 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=477, tab_type=local) called +2025-03-08 14:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:49 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=478, tab_type=local) called +2025-03-08 14:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:50 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=479, tab_type=local) called +2025-03-08 14:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:50 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=480, tab_type=local) called +2025-03-08 14:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:51 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=481, tab_type=local) called +2025-03-08 14:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:51 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=482, tab_type=local) called +2025-03-08 14:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:52 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=483, tab_type=local) called +2025-03-08 14:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:52 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=484, tab_type=local) called +2025-03-08 14:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:53 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=485, tab_type=local) called +2025-03-08 14:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:53 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=486, tab_type=local) called +2025-03-08 14:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:54 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=487, tab_type=local) called +2025-03-08 14:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:54 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=488, tab_type=local) called +2025-03-08 14:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:55 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=489, tab_type=local) called +2025-03-08 14:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:55 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=490, tab_type=local) called +2025-03-08 14:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:56 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=491, tab_type=local) called +2025-03-08 14:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:56 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=492, tab_type=local) called +2025-03-08 14:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:57 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=493, tab_type=local) called +2025-03-08 14:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:57 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=494, tab_type=local) called +2025-03-08 14:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:58 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=495, tab_type=local) called +2025-03-08 14:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:58 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=496, tab_type=local) called +2025-03-08 14:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:59 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=497, tab_type=local) called +2025-03-08 14:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:43:59 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=498, tab_type=local) called +2025-03-08 14:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:00 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=499, tab_type=local) called +2025-03-08 14:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:00 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=500, tab_type=local) called +2025-03-08 14:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:01 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=501, tab_type=local) called +2025-03-08 14:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:01 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=502, tab_type=local) called +2025-03-08 14:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:02 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=503, tab_type=local) called +2025-03-08 14:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:02 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=504, tab_type=local) called +2025-03-08 14:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:03 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=505, tab_type=local) called +2025-03-08 14:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:03 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=506, tab_type=local) called +2025-03-08 14:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:04 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=507, tab_type=local) called +2025-03-08 14:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:04 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=508, tab_type=local) called +2025-03-08 14:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:05 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=509, tab_type=local) called +2025-03-08 14:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:05 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=510, tab_type=local) called +2025-03-08 14:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:06 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=511, tab_type=local) called +2025-03-08 14:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:06 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=512, tab_type=local) called +2025-03-08 14:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:07 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=513, tab_type=local) called +2025-03-08 14:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:07 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=514, tab_type=local) called +2025-03-08 14:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:07 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=515, tab_type=local) called +2025-03-08 14:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:08 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=516, tab_type=local) called +2025-03-08 14:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:08 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=517, tab_type=local) called +2025-03-08 14:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:09 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=518, tab_type=local) called +2025-03-08 14:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:09 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=519, tab_type=local) called +2025-03-08 14:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:10 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=520, tab_type=local) called +2025-03-08 14:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:10 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=521, tab_type=local) called +2025-03-08 14:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:11 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=522, tab_type=local) called +2025-03-08 14:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:12 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=523, tab_type=local) called +2025-03-08 14:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:12 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=524, tab_type=local) called +2025-03-08 14:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:13 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=525, tab_type=local) called +2025-03-08 14:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 14:44:13 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=526, tab_type=local) called +2025-03-08 14:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:14 - INFO - create_for_product(product_id=3831, title=Description, content=La Chope au parfum , nickname=, position=527, tab_type=local) called +2025-03-08 14:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:16 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=528, tab_type=local) called +2025-03-08 14:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:17 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=529, tab_type=local) called +2025-03-08 14:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:17 - INFO - create_for_product(product_id=3831, title=Description, content=La bougie Chope au p, nickname=, position=530, tab_type=local) called +2025-03-08 14:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:18 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=531, tab_type=local) called +2025-03-08 14:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:18 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=532, tab_type=local) called +2025-03-08 14:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:19 - INFO - create_for_product(product_id=3831, title=Description, content=La bougie Chope au p, nickname=, position=533, tab_type=local) called +2025-03-08 14:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:19 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=534, tab_type=local) called +2025-03-08 14:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:19 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=535, tab_type=local) called +2025-03-08 14:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:20 - INFO - create_for_product(product_id=3831, title=Description, content=La Chope au parfum d, nickname=, position=536, tab_type=local) called +2025-03-08 14:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:21 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=537, tab_type=local) called +2025-03-08 14:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:21 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=538, tab_type=local) called +2025-03-08 14:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:22 - INFO - create_for_product(product_id=3831, title=Description, content= La bougie Chope au , nickname=, position=539, tab_type=local) called +2025-03-08 14:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:23 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=540, tab_type=local) called +2025-03-08 14:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:23 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=541, tab_type=local) called +2025-03-08 14:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:24 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=542, tab_type=local) called +2025-03-08 14:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:24 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=543, tab_type=local) called +2025-03-08 14:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:25 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=544, tab_type=local) called +2025-03-08 14:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:25 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=545, tab_type=local) called +2025-03-08 14:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:26 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=546, tab_type=local) called +2025-03-08 14:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:26 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=547, tab_type=local) called +2025-03-08 14:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:27 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=548, tab_type=local) called +2025-03-08 14:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:27 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=549, tab_type=local) called +2025-03-08 14:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:28 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=550, tab_type=local) called +2025-03-08 14:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:28 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=551, tab_type=local) called +2025-03-08 14:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:29 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=552, tab_type=local) called +2025-03-08 14:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:29 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=553, tab_type=local) called +2025-03-08 14:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:30 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=554, tab_type=local) called +2025-03-08 14:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:30 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=555, tab_type=local) called +2025-03-08 14:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:31 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=556, tab_type=local) called +2025-03-08 14:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:31 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=557, tab_type=local) called +2025-03-08 14:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:32 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=558, tab_type=local) called +2025-03-08 14:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:32 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=559, tab_type=local) called +2025-03-08 14:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:33 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=560, tab_type=local) called +2025-03-08 14:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:33 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=561, tab_type=local) called +2025-03-08 14:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:33 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=562, tab_type=local) called +2025-03-08 14:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:34 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=563, tab_type=local) called +2025-03-08 14:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:34 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=564, tab_type=local) called +2025-03-08 14:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:35 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=565, tab_type=local) called +2025-03-08 14:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:35 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=566, tab_type=local) called +2025-03-08 14:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:36 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=567, tab_type=local) called +2025-03-08 14:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:36 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=568, tab_type=local) called +2025-03-08 14:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:37 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=569, tab_type=local) called +2025-03-08 14:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:37 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=570, tab_type=local) called +2025-03-08 14:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:38 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=571, tab_type=local) called +2025-03-08 14:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:38 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=572, tab_type=local) called +2025-03-08 14:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:39 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=573, tab_type=local) called +2025-03-08 14:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:39 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=574, tab_type=local) called +2025-03-08 14:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:40 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=575, tab_type=local) called +2025-03-08 14:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:40 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=576, tab_type=local) called +2025-03-08 14:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:41 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=577, tab_type=local) called +2025-03-08 14:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:41 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=578, tab_type=local) called +2025-03-08 14:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:42 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=579, tab_type=local) called +2025-03-08 14:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:42 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=580, tab_type=local) called +2025-03-08 14:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:42 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=581, tab_type=local) called +2025-03-08 14:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:43 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=582, tab_type=local) called +2025-03-08 14:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:43 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=583, tab_type=local) called +2025-03-08 14:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:44 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=584, tab_type=local) called +2025-03-08 14:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:45 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=585, tab_type=local) called +2025-03-08 14:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:45 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=586, tab_type=local) called +2025-03-08 14:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:46 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=587, tab_type=local) called +2025-03-08 14:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:46 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=588, tab_type=local) called +2025-03-08 14:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:46 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=589, tab_type=local) called +2025-03-08 14:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:47 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=590, tab_type=local) called +2025-03-08 14:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:47 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=591, tab_type=local) called +2025-03-08 14:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:48 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=592, tab_type=local) called +2025-03-08 14:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:48 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=593, tab_type=local) called +2025-03-08 14:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:49 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=594, tab_type=local) called +2025-03-08 14:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:49 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=595, tab_type=local) called +2025-03-08 14:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:50 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=596, tab_type=local) called +2025-03-08 14:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:50 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=597, tab_type=local) called +2025-03-08 14:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:51 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=598, tab_type=local) called +2025-03-08 14:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:51 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=599, tab_type=local) called +2025-03-08 14:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:52 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=600, tab_type=local) called +2025-03-08 14:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 14:44:52 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=601, tab_type=local) called +2025-03-08 14:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:54 - INFO - create_for_product(product_id=3830, title=Description, content=La Chope au parfum , nickname=, position=602, tab_type=local) called +2025-03-08 14:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:55 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=603, tab_type=local) called +2025-03-08 14:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:56 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=604, tab_type=local) called +2025-03-08 14:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:56 - INFO - create_for_product(product_id=3830, title=Description, content=La bougie Chope au p, nickname=, position=605, tab_type=local) called +2025-03-08 14:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:57 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=606, tab_type=local) called +2025-03-08 14:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:57 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=607, tab_type=local) called +2025-03-08 14:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:58 - INFO - create_for_product(product_id=3830, title=Description, content=La bougie Chope au p, nickname=, position=608, tab_type=local) called +2025-03-08 14:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:58 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=609, tab_type=local) called +2025-03-08 14:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:44:59 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=610, tab_type=local) called +2025-03-08 14:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:00 - INFO - create_for_product(product_id=3830, title=Description, content=La Chope au parfum d, nickname=, position=611, tab_type=local) called +2025-03-08 14:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:00 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=612, tab_type=local) called +2025-03-08 14:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:00 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=613, tab_type=local) called +2025-03-08 14:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:01 - INFO - create_for_product(product_id=3830, title=Description, content= La bougie Chope au , nickname=, position=614, tab_type=local) called +2025-03-08 14:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:01 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=615, tab_type=local) called +2025-03-08 14:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:02 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=616, tab_type=local) called +2025-03-08 14:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:02 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=617, tab_type=local) called +2025-03-08 14:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:03 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=618, tab_type=local) called +2025-03-08 14:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:03 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=619, tab_type=local) called +2025-03-08 14:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:03 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=620, tab_type=local) called +2025-03-08 14:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:04 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=621, tab_type=local) called +2025-03-08 14:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:04 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=622, tab_type=local) called +2025-03-08 14:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:05 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=623, tab_type=local) called +2025-03-08 14:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:05 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=624, tab_type=local) called +2025-03-08 14:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:06 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=625, tab_type=local) called +2025-03-08 14:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:06 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=626, tab_type=local) called +2025-03-08 14:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:07 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=627, tab_type=local) called +2025-03-08 14:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:07 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=628, tab_type=local) called +2025-03-08 14:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:08 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=629, tab_type=local) called +2025-03-08 14:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:08 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=630, tab_type=local) called +2025-03-08 14:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:09 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=631, tab_type=local) called +2025-03-08 14:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:09 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=632, tab_type=local) called +2025-03-08 14:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:10 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=633, tab_type=local) called +2025-03-08 14:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:10 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=634, tab_type=local) called +2025-03-08 14:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:11 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=635, tab_type=local) called +2025-03-08 14:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:11 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=636, tab_type=local) called +2025-03-08 14:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:12 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=637, tab_type=local) called +2025-03-08 14:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:12 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=638, tab_type=local) called +2025-03-08 14:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:13 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=639, tab_type=local) called +2025-03-08 14:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:13 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=640, tab_type=local) called +2025-03-08 14:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:14 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=641, tab_type=local) called +2025-03-08 14:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:14 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=642, tab_type=local) called +2025-03-08 14:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:14 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=643, tab_type=local) called +2025-03-08 14:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:15 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=644, tab_type=local) called +2025-03-08 14:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:15 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=645, tab_type=local) called +2025-03-08 14:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:16 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=646, tab_type=local) called +2025-03-08 14:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:16 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=647, tab_type=local) called +2025-03-08 14:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:17 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=648, tab_type=local) called +2025-03-08 14:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:17 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=649, tab_type=local) called +2025-03-08 14:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:18 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=650, tab_type=local) called +2025-03-08 14:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:18 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=651, tab_type=local) called +2025-03-08 14:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:18 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=652, tab_type=local) called +2025-03-08 14:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:19 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=653, tab_type=local) called +2025-03-08 14:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:19 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=654, tab_type=local) called +2025-03-08 14:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:20 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=655, tab_type=local) called +2025-03-08 14:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:21 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=656, tab_type=local) called +2025-03-08 14:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:21 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=657, tab_type=local) called +2025-03-08 14:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:22 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=658, tab_type=local) called +2025-03-08 14:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:22 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=659, tab_type=local) called +2025-03-08 14:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:23 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=660, tab_type=local) called +2025-03-08 14:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:23 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=661, tab_type=local) called +2025-03-08 14:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:24 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=662, tab_type=local) called +2025-03-08 14:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:24 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=663, tab_type=local) called +2025-03-08 14:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:25 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=664, tab_type=local) called +2025-03-08 14:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:26 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=665, tab_type=local) called +2025-03-08 14:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:26 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=666, tab_type=local) called +2025-03-08 14:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:27 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=667, tab_type=local) called +2025-03-08 14:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:28 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=668, tab_type=local) called +2025-03-08 14:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:29 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=669, tab_type=local) called +2025-03-08 14:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:30 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=670, tab_type=local) called +2025-03-08 14:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:31 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=671, tab_type=local) called +2025-03-08 14:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:34 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=672, tab_type=local) called +2025-03-08 14:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:36 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=673, tab_type=local) called +2025-03-08 14:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:37 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=674, tab_type=local) called +2025-03-08 14:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 14:45:37 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=675, tab_type=local) called +2025-03-08 14:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=676, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Description, content=La Chope au parfum , nickname=, position=677, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=678, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=679, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Description, content=La bougie Chope au p, nickname=, position=680, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=681, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=682, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Description, content=La bougie Chope au p, nickname=, position=683, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=684, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=685, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Description, content=La Chope au parfum d, nickname=, position=686, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=687, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=688, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:39 - INFO - create_for_product(product_id=3829, title=Description, content= La bougie Chope au , nickname=, position=689, tab_type=local) called +2025-03-08 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=690, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=691, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=692, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=693, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=694, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=695, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=696, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=697, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=698, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=699, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=700, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=701, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=702, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=703, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=704, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=705, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:40 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=706, tab_type=local) called +2025-03-08 14:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=707, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=708, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=709, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=710, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=711, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=712, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=713, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=714, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=715, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=716, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=717, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=718, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=719, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=720, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:41 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=721, tab_type=local) called +2025-03-08 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=722, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=723, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=724, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=725, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=726, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=727, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=728, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=729, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=730, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=731, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=732, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=733, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=734, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=735, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=736, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=737, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 502 157 +2025-03-08 14:45:42 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=738, tab_type=local) called +2025-03-08 14:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:44 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=739, tab_type=local) called +2025-03-08 14:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:45 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=740, tab_type=local) called +2025-03-08 14:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:47 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=741, tab_type=local) called +2025-03-08 14:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:47 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=742, tab_type=local) called +2025-03-08 14:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:48 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=743, tab_type=local) called +2025-03-08 14:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:48 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=744, tab_type=local) called +2025-03-08 14:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:49 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=745, tab_type=local) called +2025-03-08 14:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:49 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=746, tab_type=local) called +2025-03-08 14:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:49 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=747, tab_type=local) called +2025-03-08 14:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:50 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=748, tab_type=local) called +2025-03-08 14:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:50 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=749, tab_type=local) called +2025-03-08 14:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:51 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=750, tab_type=local) called +2025-03-08 14:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 14:45:51 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=751, tab_type=local) called +2025-03-08 14:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:45:53 - INFO - create_for_product(product_id=3828, title=Description, content=La Chope au parfum , nickname=, position=752, tab_type=local) called +2025-03-08 14:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:45:56 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=753, tab_type=local) called +2025-03-08 14:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:00 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=754, tab_type=local) called +2025-03-08 14:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:01 - INFO - create_for_product(product_id=3828, title=Description, content=La bougie Chope au p, nickname=, position=755, tab_type=local) called +2025-03-08 14:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:03 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=756, tab_type=local) called +2025-03-08 14:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:03 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=757, tab_type=local) called +2025-03-08 14:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:04 - INFO - create_for_product(product_id=3828, title=Description, content=La bougie Chope au p, nickname=, position=758, tab_type=local) called +2025-03-08 14:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:05 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=759, tab_type=local) called +2025-03-08 14:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:07 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=760, tab_type=local) called +2025-03-08 14:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:08 - INFO - create_for_product(product_id=3828, title=Description, content=La Chope au parfum d, nickname=, position=761, tab_type=local) called +2025-03-08 14:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:08 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=762, tab_type=local) called +2025-03-08 14:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:09 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=763, tab_type=local) called +2025-03-08 14:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:09 - INFO - create_for_product(product_id=3828, title=Description, content= La bougie Chope au , nickname=, position=764, tab_type=local) called +2025-03-08 14:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:10 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=765, tab_type=local) called +2025-03-08 14:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:10 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=766, tab_type=local) called +2025-03-08 14:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:11 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=767, tab_type=local) called +2025-03-08 14:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:11 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=768, tab_type=local) called +2025-03-08 14:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:11 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=769, tab_type=local) called +2025-03-08 14:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:12 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=770, tab_type=local) called +2025-03-08 14:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:12 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=771, tab_type=local) called +2025-03-08 14:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:13 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=772, tab_type=local) called +2025-03-08 14:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:14 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=773, tab_type=local) called +2025-03-08 14:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:14 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=774, tab_type=local) called +2025-03-08 14:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:14 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=775, tab_type=local) called +2025-03-08 14:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:15 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=776, tab_type=local) called +2025-03-08 14:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:15 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=777, tab_type=local) called +2025-03-08 14:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:16 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=778, tab_type=local) called +2025-03-08 14:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:17 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=779, tab_type=local) called +2025-03-08 14:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:18 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=780, tab_type=local) called +2025-03-08 14:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:18 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=781, tab_type=local) called +2025-03-08 14:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:19 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=782, tab_type=local) called +2025-03-08 14:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:23 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=783, tab_type=local) called +2025-03-08 14:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:24 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=784, tab_type=local) called +2025-03-08 14:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:24 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=785, tab_type=local) called +2025-03-08 14:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:25 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=786, tab_type=local) called +2025-03-08 14:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:25 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=787, tab_type=local) called +2025-03-08 14:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:26 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=788, tab_type=local) called +2025-03-08 14:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:26 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=789, tab_type=local) called +2025-03-08 14:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:26 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=790, tab_type=local) called +2025-03-08 14:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:27 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=791, tab_type=local) called +2025-03-08 14:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:27 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=792, tab_type=local) called +2025-03-08 14:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:28 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=793, tab_type=local) called +2025-03-08 14:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:28 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=794, tab_type=local) called +2025-03-08 14:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:29 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=795, tab_type=local) called +2025-03-08 14:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:29 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=796, tab_type=local) called +2025-03-08 14:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:30 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=797, tab_type=local) called +2025-03-08 14:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:30 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=798, tab_type=local) called +2025-03-08 14:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:31 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=799, tab_type=local) called +2025-03-08 14:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:32 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=800, tab_type=local) called +2025-03-08 14:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:32 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=801, tab_type=local) called +2025-03-08 14:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:33 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=802, tab_type=local) called +2025-03-08 14:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:33 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=803, tab_type=local) called +2025-03-08 14:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:33 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=804, tab_type=local) called +2025-03-08 14:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:34 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=805, tab_type=local) called +2025-03-08 14:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:35 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=806, tab_type=local) called +2025-03-08 14:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:35 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=807, tab_type=local) called +2025-03-08 14:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:36 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=808, tab_type=local) called +2025-03-08 14:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:36 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=809, tab_type=local) called +2025-03-08 14:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:37 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=810, tab_type=local) called +2025-03-08 14:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:38 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=811, tab_type=local) called +2025-03-08 14:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:38 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=812, tab_type=local) called +2025-03-08 14:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:38 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=813, tab_type=local) called +2025-03-08 14:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:39 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=814, tab_type=local) called +2025-03-08 14:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:40 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=815, tab_type=local) called +2025-03-08 14:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:40 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=816, tab_type=local) called +2025-03-08 14:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:41 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=817, tab_type=local) called +2025-03-08 14:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:41 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=818, tab_type=local) called +2025-03-08 14:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:41 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=819, tab_type=local) called +2025-03-08 14:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:42 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=820, tab_type=local) called +2025-03-08 14:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:43 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=821, tab_type=local) called +2025-03-08 14:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:43 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=822, tab_type=local) called +2025-03-08 14:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:44 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=823, tab_type=local) called +2025-03-08 14:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:44 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=824, tab_type=local) called +2025-03-08 14:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:45 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=825, tab_type=local) called +2025-03-08 14:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 14:46:45 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=826, tab_type=local) called +2025-03-08 14:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:47 - INFO - create_for_product(product_id=3827, title=Description, content=La Chope au parfum , nickname=, position=827, tab_type=local) called +2025-03-08 14:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:48 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=828, tab_type=local) called +2025-03-08 14:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:49 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=829, tab_type=local) called +2025-03-08 14:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:50 - INFO - create_for_product(product_id=3827, title=Description, content=La bougie Chope au p, nickname=, position=830, tab_type=local) called +2025-03-08 14:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:50 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=831, tab_type=local) called +2025-03-08 14:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:51 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=832, tab_type=local) called +2025-03-08 14:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:51 - INFO - create_for_product(product_id=3827, title=Description, content=La bougie Chope au p, nickname=, position=833, tab_type=local) called +2025-03-08 14:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:52 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=834, tab_type=local) called +2025-03-08 14:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:52 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=835, tab_type=local) called +2025-03-08 14:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:53 - INFO - create_for_product(product_id=3827, title=Description, content=La Chope au parfum d, nickname=, position=836, tab_type=local) called +2025-03-08 14:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:53 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=837, tab_type=local) called +2025-03-08 14:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:54 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=838, tab_type=local) called +2025-03-08 14:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:54 - INFO - create_for_product(product_id=3827, title=Description, content= La bougie Chope au , nickname=, position=839, tab_type=local) called +2025-03-08 14:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:55 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=840, tab_type=local) called +2025-03-08 14:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:56 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=841, tab_type=local) called +2025-03-08 14:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:56 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=842, tab_type=local) called +2025-03-08 14:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:57 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=843, tab_type=local) called +2025-03-08 14:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:57 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=844, tab_type=local) called +2025-03-08 14:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:58 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=845, tab_type=local) called +2025-03-08 14:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:58 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=846, tab_type=local) called +2025-03-08 14:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:59 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=847, tab_type=local) called +2025-03-08 14:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:46:59 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=848, tab_type=local) called +2025-03-08 14:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:00 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=849, tab_type=local) called +2025-03-08 14:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:01 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=850, tab_type=local) called +2025-03-08 14:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:01 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=851, tab_type=local) called +2025-03-08 14:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:02 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=852, tab_type=local) called +2025-03-08 14:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:02 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=853, tab_type=local) called +2025-03-08 14:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:03 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=854, tab_type=local) called +2025-03-08 14:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:03 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=855, tab_type=local) called +2025-03-08 14:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:04 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=856, tab_type=local) called +2025-03-08 14:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:05 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=857, tab_type=local) called +2025-03-08 14:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:05 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=858, tab_type=local) called +2025-03-08 14:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:06 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=859, tab_type=local) called +2025-03-08 14:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:06 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=860, tab_type=local) called +2025-03-08 14:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:07 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=861, tab_type=local) called +2025-03-08 14:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:08 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=862, tab_type=local) called +2025-03-08 14:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:08 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=863, tab_type=local) called +2025-03-08 14:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:09 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=864, tab_type=local) called +2025-03-08 14:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:09 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=865, tab_type=local) called +2025-03-08 14:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:10 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=866, tab_type=local) called +2025-03-08 14:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:11 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=867, tab_type=local) called +2025-03-08 14:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:11 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=868, tab_type=local) called +2025-03-08 14:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:12 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=869, tab_type=local) called +2025-03-08 14:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:12 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=870, tab_type=local) called +2025-03-08 14:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:13 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=871, tab_type=local) called +2025-03-08 14:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:15 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=872, tab_type=local) called +2025-03-08 14:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:16 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=873, tab_type=local) called +2025-03-08 14:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:17 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=874, tab_type=local) called +2025-03-08 14:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:20 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=875, tab_type=local) called +2025-03-08 14:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:21 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=876, tab_type=local) called +2025-03-08 14:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:22 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=877, tab_type=local) called +2025-03-08 14:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:23 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=878, tab_type=local) called +2025-03-08 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:23 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=879, tab_type=local) called +2025-03-08 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:24 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=880, tab_type=local) called +2025-03-08 14:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:25 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=881, tab_type=local) called +2025-03-08 14:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:26 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=882, tab_type=local) called +2025-03-08 14:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:26 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=883, tab_type=local) called +2025-03-08 14:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:27 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=884, tab_type=local) called +2025-03-08 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:27 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=885, tab_type=local) called +2025-03-08 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:28 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=886, tab_type=local) called +2025-03-08 14:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:29 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=887, tab_type=local) called +2025-03-08 14:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:29 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=888, tab_type=local) called +2025-03-08 14:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:30 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=889, tab_type=local) called +2025-03-08 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:30 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=890, tab_type=local) called +2025-03-08 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:31 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=891, tab_type=local) called +2025-03-08 14:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:32 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=892, tab_type=local) called +2025-03-08 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:32 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=893, tab_type=local) called +2025-03-08 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:33 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=894, tab_type=local) called +2025-03-08 14:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:34 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=895, tab_type=local) called +2025-03-08 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:34 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=896, tab_type=local) called +2025-03-08 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:35 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=897, tab_type=local) called +2025-03-08 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:35 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=898, tab_type=local) called +2025-03-08 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:36 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=899, tab_type=local) called +2025-03-08 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:36 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=900, tab_type=local) called +2025-03-08 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 14:47:37 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=901, tab_type=local) called +2025-03-08 14:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:38 - INFO - create_for_product(product_id=3826, title=Description, content=La Chope au parfum , nickname=, position=902, tab_type=local) called +2025-03-08 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:39 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=903, tab_type=local) called +2025-03-08 14:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:40 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=904, tab_type=local) called +2025-03-08 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:41 - INFO - create_for_product(product_id=3826, title=Description, content=La bougie Chope au p, nickname=, position=905, tab_type=local) called +2025-03-08 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:41 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=906, tab_type=local) called +2025-03-08 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:42 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=907, tab_type=local) called +2025-03-08 14:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:43 - INFO - create_for_product(product_id=3826, title=Description, content=La bougie Chope au p, nickname=, position=908, tab_type=local) called +2025-03-08 14:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:44 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=909, tab_type=local) called +2025-03-08 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:44 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=910, tab_type=local) called +2025-03-08 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:47 - INFO - create_for_product(product_id=3826, title=Description, content=La Chope au parfum d, nickname=, position=911, tab_type=local) called +2025-03-08 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:48 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=912, tab_type=local) called +2025-03-08 14:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:49 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=913, tab_type=local) called +2025-03-08 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:50 - INFO - create_for_product(product_id=3826, title=Description, content= La bougie Chope au , nickname=, position=914, tab_type=local) called +2025-03-08 14:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:51 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=915, tab_type=local) called +2025-03-08 14:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:52 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=916, tab_type=local) called +2025-03-08 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:55 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=917, tab_type=local) called +2025-03-08 14:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:56 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=918, tab_type=local) called +2025-03-08 14:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:56 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=919, tab_type=local) called +2025-03-08 14:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:57 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=920, tab_type=local) called +2025-03-08 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:57 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=921, tab_type=local) called +2025-03-08 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:58 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=922, tab_type=local) called +2025-03-08 14:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:59 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=923, tab_type=local) called +2025-03-08 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:47:59 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=924, tab_type=local) called +2025-03-08 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:00 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=925, tab_type=local) called +2025-03-08 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:00 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=926, tab_type=local) called +2025-03-08 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:01 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=927, tab_type=local) called +2025-03-08 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:01 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=928, tab_type=local) called +2025-03-08 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:02 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=929, tab_type=local) called +2025-03-08 14:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:02 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=930, tab_type=local) called +2025-03-08 14:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:03 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=931, tab_type=local) called +2025-03-08 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:04 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=932, tab_type=local) called +2025-03-08 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:04 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=933, tab_type=local) called +2025-03-08 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:05 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=934, tab_type=local) called +2025-03-08 14:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:06 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=935, tab_type=local) called +2025-03-08 14:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:07 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=936, tab_type=local) called +2025-03-08 14:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:07 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=937, tab_type=local) called +2025-03-08 14:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:11 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=938, tab_type=local) called +2025-03-08 14:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:12 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=939, tab_type=local) called +2025-03-08 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:12 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=940, tab_type=local) called +2025-03-08 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:13 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=941, tab_type=local) called +2025-03-08 14:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:13 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=942, tab_type=local) called +2025-03-08 14:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:14 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=943, tab_type=local) called +2025-03-08 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:14 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=944, tab_type=local) called +2025-03-08 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:14 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=945, tab_type=local) called +2025-03-08 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:15 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=946, tab_type=local) called +2025-03-08 14:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:15 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=947, tab_type=local) called +2025-03-08 14:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:16 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=948, tab_type=local) called +2025-03-08 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:16 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=949, tab_type=local) called +2025-03-08 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:17 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=950, tab_type=local) called +2025-03-08 14:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:17 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=951, tab_type=local) called +2025-03-08 14:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:18 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=952, tab_type=local) called +2025-03-08 14:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:19 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=953, tab_type=local) called +2025-03-08 14:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:19 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=954, tab_type=local) called +2025-03-08 14:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:20 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=955, tab_type=local) called +2025-03-08 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:20 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=956, tab_type=local) called +2025-03-08 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:20 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=957, tab_type=local) called +2025-03-08 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:21 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=958, tab_type=local) called +2025-03-08 14:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:21 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=959, tab_type=local) called +2025-03-08 14:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:22 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=960, tab_type=local) called +2025-03-08 14:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:22 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=961, tab_type=local) called +2025-03-08 14:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:23 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=962, tab_type=local) called +2025-03-08 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:23 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=963, tab_type=local) called +2025-03-08 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:24 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=964, tab_type=local) called +2025-03-08 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:24 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=965, tab_type=local) called +2025-03-08 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:25 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=966, tab_type=local) called +2025-03-08 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:26 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=967, tab_type=local) called +2025-03-08 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:26 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=968, tab_type=local) called +2025-03-08 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:27 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=969, tab_type=local) called +2025-03-08 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:27 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=970, tab_type=local) called +2025-03-08 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:28 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=971, tab_type=local) called +2025-03-08 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:28 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=972, tab_type=local) called +2025-03-08 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:29 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=973, tab_type=local) called +2025-03-08 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:29 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=974, tab_type=local) called +2025-03-08 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:30 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=975, tab_type=local) called +2025-03-08 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 14:48:30 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=976, tab_type=local) called +2025-03-08 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:32 - INFO - create_for_product(product_id=3825, title=Description, content=La Chope au parfum , nickname=, position=977, tab_type=local) called +2025-03-08 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:36 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=978, tab_type=local) called +2025-03-08 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:37 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=979, tab_type=local) called +2025-03-08 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:38 - INFO - create_for_product(product_id=3825, title=Description, content=La bougie Chope au p, nickname=, position=980, tab_type=local) called +2025-03-08 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:39 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=981, tab_type=local) called +2025-03-08 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:39 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=982, tab_type=local) called +2025-03-08 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:40 - INFO - create_for_product(product_id=3825, title=Description, content=La bougie Chope au p, nickname=, position=983, tab_type=local) called +2025-03-08 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:42 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=984, tab_type=local) called +2025-03-08 14:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:44 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=985, tab_type=local) called +2025-03-08 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:44 - INFO - create_for_product(product_id=3825, title=Description, content=La Chope au parfum d, nickname=, position=986, tab_type=local) called +2025-03-08 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:45 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=987, tab_type=local) called +2025-03-08 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:45 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=988, tab_type=local) called +2025-03-08 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:46 - INFO - create_for_product(product_id=3825, title=Description, content= La bougie Chope au , nickname=, position=989, tab_type=local) called +2025-03-08 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:47 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=990, tab_type=local) called +2025-03-08 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:47 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=991, tab_type=local) called +2025-03-08 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:48 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=992, tab_type=local) called +2025-03-08 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:48 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=993, tab_type=local) called +2025-03-08 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:49 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=994, tab_type=local) called +2025-03-08 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:49 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=995, tab_type=local) called +2025-03-08 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:49 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=996, tab_type=local) called +2025-03-08 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:50 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=997, tab_type=local) called +2025-03-08 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:50 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=998, tab_type=local) called +2025-03-08 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:51 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=999, tab_type=local) called +2025-03-08 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:51 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1000, tab_type=local) called +2025-03-08 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:52 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=1001, tab_type=local) called +2025-03-08 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:52 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1002, tab_type=local) called +2025-03-08 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:53 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1003, tab_type=local) called +2025-03-08 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:54 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1004, tab_type=local) called +2025-03-08 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:54 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1005, tab_type=local) called +2025-03-08 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:55 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1006, tab_type=local) called +2025-03-08 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:55 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1007, tab_type=local) called +2025-03-08 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:56 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1008, tab_type=local) called +2025-03-08 14:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:56 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1009, tab_type=local) called +2025-03-08 14:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:57 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1010, tab_type=local) called +2025-03-08 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:57 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1011, tab_type=local) called +2025-03-08 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:58 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1012, tab_type=local) called +2025-03-08 14:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:59 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1013, tab_type=local) called +2025-03-08 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:48:59 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1014, tab_type=local) called +2025-03-08 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:00 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1015, tab_type=local) called +2025-03-08 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:00 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1016, tab_type=local) called +2025-03-08 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:01 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1017, tab_type=local) called +2025-03-08 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:01 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1018, tab_type=local) called +2025-03-08 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:02 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1019, tab_type=local) called +2025-03-08 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:02 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1020, tab_type=local) called +2025-03-08 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:03 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1021, tab_type=local) called +2025-03-08 14:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:03 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1022, tab_type=local) called +2025-03-08 14:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:04 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1023, tab_type=local) called +2025-03-08 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:04 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1024, tab_type=local) called +2025-03-08 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:04 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1025, tab_type=local) called +2025-03-08 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:05 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1026, tab_type=local) called +2025-03-08 14:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:05 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1027, tab_type=local) called +2025-03-08 14:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:06 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=1028, tab_type=local) called +2025-03-08 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:06 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1029, tab_type=local) called +2025-03-08 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:06 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1030, tab_type=local) called +2025-03-08 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:07 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=1031, tab_type=local) called +2025-03-08 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:07 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1032, tab_type=local) called +2025-03-08 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:08 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1033, tab_type=local) called +2025-03-08 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:08 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=1034, tab_type=local) called +2025-03-08 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:08 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1035, tab_type=local) called +2025-03-08 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:09 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1036, tab_type=local) called +2025-03-08 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:09 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1037, tab_type=local) called +2025-03-08 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:10 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1038, tab_type=local) called +2025-03-08 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:10 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1039, tab_type=local) called +2025-03-08 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:11 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=1040, tab_type=local) called +2025-03-08 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:11 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1041, tab_type=local) called +2025-03-08 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:11 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1042, tab_type=local) called +2025-03-08 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:12 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1043, tab_type=local) called +2025-03-08 14:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:13 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1044, tab_type=local) called +2025-03-08 14:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:13 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1045, tab_type=local) called +2025-03-08 14:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:14 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1046, tab_type=local) called +2025-03-08 14:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:14 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1047, tab_type=local) called +2025-03-08 14:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:15 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1048, tab_type=local) called +2025-03-08 14:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:15 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=1049, tab_type=local) called +2025-03-08 14:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:16 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1050, tab_type=local) called +2025-03-08 14:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 14:49:16 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1051, tab_type=local) called +2025-03-08 14:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:18 - INFO - create_for_product(product_id=3824, title=Description, content=La Chope au parfum , nickname=, position=1052, tab_type=local) called +2025-03-08 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:19 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1053, tab_type=local) called +2025-03-08 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:20 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1054, tab_type=local) called +2025-03-08 14:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:20 - INFO - create_for_product(product_id=3824, title=Description, content=La bougie Chope au p, nickname=, position=1055, tab_type=local) called +2025-03-08 14:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:21 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1056, tab_type=local) called +2025-03-08 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:21 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1057, tab_type=local) called +2025-03-08 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:22 - INFO - create_for_product(product_id=3824, title=Description, content=La bougie Chope au p, nickname=, position=1058, tab_type=local) called +2025-03-08 14:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:23 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1059, tab_type=local) called +2025-03-08 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:23 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1060, tab_type=local) called +2025-03-08 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:24 - INFO - create_for_product(product_id=3824, title=Description, content=La Chope au parfum d, nickname=, position=1061, tab_type=local) called +2025-03-08 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:24 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1062, tab_type=local) called +2025-03-08 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:24 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1063, tab_type=local) called +2025-03-08 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:25 - INFO - create_for_product(product_id=3824, title=Description, content= La bougie Chope au , nickname=, position=1064, tab_type=local) called +2025-03-08 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:25 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1065, tab_type=local) called +2025-03-08 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:26 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1066, tab_type=local) called +2025-03-08 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:26 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=1067, tab_type=local) called +2025-03-08 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:27 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1068, tab_type=local) called +2025-03-08 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:28 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1069, tab_type=local) called +2025-03-08 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:28 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=1070, tab_type=local) called +2025-03-08 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:29 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1071, tab_type=local) called +2025-03-08 14:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:30 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1072, tab_type=local) called +2025-03-08 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:30 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=1073, tab_type=local) called +2025-03-08 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:31 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1074, tab_type=local) called +2025-03-08 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:32 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1075, tab_type=local) called +2025-03-08 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:32 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=1076, tab_type=local) called +2025-03-08 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:33 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1077, tab_type=local) called +2025-03-08 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:34 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1078, tab_type=local) called +2025-03-08 14:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:34 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1079, tab_type=local) called +2025-03-08 14:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:35 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1080, tab_type=local) called +2025-03-08 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:36 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1081, tab_type=local) called +2025-03-08 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:36 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1082, tab_type=local) called +2025-03-08 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:37 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1083, tab_type=local) called +2025-03-08 14:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:38 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1084, tab_type=local) called +2025-03-08 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:38 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1085, tab_type=local) called +2025-03-08 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:39 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1086, tab_type=local) called +2025-03-08 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:39 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1087, tab_type=local) called +2025-03-08 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:40 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1088, tab_type=local) called +2025-03-08 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:41 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1089, tab_type=local) called +2025-03-08 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:42 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1090, tab_type=local) called +2025-03-08 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:42 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1091, tab_type=local) called +2025-03-08 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:43 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1092, tab_type=local) called +2025-03-08 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:44 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1093, tab_type=local) called +2025-03-08 14:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:45 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1094, tab_type=local) called +2025-03-08 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:45 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1095, tab_type=local) called +2025-03-08 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:46 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1096, tab_type=local) called +2025-03-08 14:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:47 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1097, tab_type=local) called +2025-03-08 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:47 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1098, tab_type=local) called +2025-03-08 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:48 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1099, tab_type=local) called +2025-03-08 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:49 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1100, tab_type=local) called +2025-03-08 14:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:50 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1101, tab_type=local) called +2025-03-08 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:50 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1102, tab_type=local) called +2025-03-08 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:51 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=1103, tab_type=local) called +2025-03-08 14:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:52 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1104, tab_type=local) called +2025-03-08 14:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:53 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1105, tab_type=local) called +2025-03-08 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:53 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=1106, tab_type=local) called +2025-03-08 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:54 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1107, tab_type=local) called +2025-03-08 14:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:55 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1108, tab_type=local) called +2025-03-08 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:56 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=1109, tab_type=local) called +2025-03-08 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:56 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1110, tab_type=local) called +2025-03-08 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:57 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1111, tab_type=local) called +2025-03-08 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:58 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1112, tab_type=local) called +2025-03-08 14:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:49:59 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1113, tab_type=local) called +2025-03-08 14:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:00 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1114, tab_type=local) called +2025-03-08 14:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:01 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=1115, tab_type=local) called +2025-03-08 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:02 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1116, tab_type=local) called +2025-03-08 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:03 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1117, tab_type=local) called +2025-03-08 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:04 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1118, tab_type=local) called +2025-03-08 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:05 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1119, tab_type=local) called +2025-03-08 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:06 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1120, tab_type=local) called +2025-03-08 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:08 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1121, tab_type=local) called +2025-03-08 14:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:09 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1122, tab_type=local) called +2025-03-08 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:10 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1123, tab_type=local) called +2025-03-08 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:11 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=1124, tab_type=local) called +2025-03-08 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:15 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1125, tab_type=local) called +2025-03-08 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 14:50:16 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1126, tab_type=local) called +2025-03-08 14:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:18 - INFO - create_for_product(product_id=3823, title=Description, content=La Chope au parfum , nickname=, position=1127, tab_type=local) called +2025-03-08 14:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:25 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1128, tab_type=local) called +2025-03-08 14:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:27 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1129, tab_type=local) called +2025-03-08 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:29 - INFO - create_for_product(product_id=3823, title=Description, content=La bougie Chope au p, nickname=, position=1130, tab_type=local) called +2025-03-08 14:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:32 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1131, tab_type=local) called +2025-03-08 14:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:33 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1132, tab_type=local) called +2025-03-08 14:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:34 - INFO - create_for_product(product_id=3823, title=Description, content=La bougie Chope au p, nickname=, position=1133, tab_type=local) called +2025-03-08 14:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:35 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1134, tab_type=local) called +2025-03-08 14:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:35 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1135, tab_type=local) called +2025-03-08 14:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:36 - INFO - create_for_product(product_id=3823, title=Description, content=La Chope au parfum d, nickname=, position=1136, tab_type=local) called +2025-03-08 14:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:37 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1137, tab_type=local) called +2025-03-08 14:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:38 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1138, tab_type=local) called +2025-03-08 14:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:39 - INFO - create_for_product(product_id=3823, title=Description, content= La bougie Chope au , nickname=, position=1139, tab_type=local) called +2025-03-08 14:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:39 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1140, tab_type=local) called +2025-03-08 14:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:40 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1141, tab_type=local) called +2025-03-08 14:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:41 - INFO - create_for_product(product_id=3823, title=Description, content=Cette Chope au parfu, nickname=, position=1142, tab_type=local) called +2025-03-08 14:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:41 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1143, tab_type=local) called +2025-03-08 14:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:42 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1144, tab_type=local) called +2025-03-08 14:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:42 - INFO - create_for_product(product_id=3823, title=Description, content=Cette Chope au parfu, nickname=, position=1145, tab_type=local) called +2025-03-08 14:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:43 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1146, tab_type=local) called +2025-03-08 14:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:44 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1147, tab_type=local) called +2025-03-08 14:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:45 - INFO - create_for_product(product_id=3823, title=Description, content=Cette Chope au parfu, nickname=, position=1148, tab_type=local) called +2025-03-08 14:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:46 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1149, tab_type=local) called +2025-03-08 14:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:47 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1150, tab_type=local) called +2025-03-08 14:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:50 - INFO - create_for_product(product_id=3823, title=Description, content=Cette Chope au parfu, nickname=, position=1151, tab_type=local) called +2025-03-08 14:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:52 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1152, tab_type=local) called +2025-03-08 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:53 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1153, tab_type=local) called +2025-03-08 14:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:53 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1154, tab_type=local) called +2025-03-08 14:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:54 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1155, tab_type=local) called +2025-03-08 14:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:55 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1156, tab_type=local) called +2025-03-08 14:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:58 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1157, tab_type=local) called +2025-03-08 14:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:50:59 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1158, tab_type=local) called +2025-03-08 14:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:00 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1159, tab_type=local) called +2025-03-08 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:00 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1160, tab_type=local) called +2025-03-08 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:01 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1161, tab_type=local) called +2025-03-08 14:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:02 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1162, tab_type=local) called +2025-03-08 14:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:02 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1163, tab_type=local) called +2025-03-08 14:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:03 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1164, tab_type=local) called +2025-03-08 14:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:03 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1165, tab_type=local) called +2025-03-08 14:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:04 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1166, tab_type=local) called +2025-03-08 14:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:05 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1167, tab_type=local) called +2025-03-08 14:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:05 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1168, tab_type=local) called +2025-03-08 14:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:06 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1169, tab_type=local) called +2025-03-08 14:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:06 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1170, tab_type=local) called +2025-03-08 14:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:07 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1171, tab_type=local) called +2025-03-08 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:07 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1172, tab_type=local) called +2025-03-08 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:08 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1173, tab_type=local) called +2025-03-08 14:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:08 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1174, tab_type=local) called +2025-03-08 14:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:09 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1175, tab_type=local) called +2025-03-08 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:09 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1176, tab_type=local) called +2025-03-08 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:10 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1177, tab_type=local) called +2025-03-08 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:10 - INFO - create_for_product(product_id=3823, title=Description, content= +Cette bougie est en, nickname=, position=1178, tab_type=local) called +2025-03-08 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:11 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1179, tab_type=local) called +2025-03-08 14:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:11 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1180, tab_type=local) called +2025-03-08 14:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:11 - INFO - create_for_product(product_id=3823, title=Description, content= +Cette bougie est en, nickname=, position=1181, tab_type=local) called +2025-03-08 14:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:12 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1182, tab_type=local) called +2025-03-08 14:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:12 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1183, tab_type=local) called +2025-03-08 14:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:13 - INFO - create_for_product(product_id=3823, title=Description, content= +Cette bougie est en, nickname=, position=1184, tab_type=local) called +2025-03-08 14:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:14 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1185, tab_type=local) called +2025-03-08 14:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:14 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1186, tab_type=local) called +2025-03-08 14:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:15 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1187, tab_type=local) called +2025-03-08 14:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:16 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1188, tab_type=local) called +2025-03-08 14:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:16 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1189, tab_type=local) called +2025-03-08 14:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:17 - INFO - create_for_product(product_id=3823, title=Description, content= +Cette bougie est en, nickname=, position=1190, tab_type=local) called +2025-03-08 14:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:17 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1191, tab_type=local) called +2025-03-08 14:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:18 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1192, tab_type=local) called +2025-03-08 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:18 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1193, tab_type=local) called +2025-03-08 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:19 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1194, tab_type=local) called +2025-03-08 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:20 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1195, tab_type=local) called +2025-03-08 14:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:20 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1196, tab_type=local) called +2025-03-08 14:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:20 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1197, tab_type=local) called +2025-03-08 14:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:21 - INFO - create_for_product(product_id=3823, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1198, tab_type=local) called +2025-03-08 14:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:21 - INFO - create_for_product(product_id=3823, title=Description, content=Cette bougie est ent, nickname=, position=1199, tab_type=local) called +2025-03-08 14:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:22 - INFO - create_for_product(product_id=3823, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1200, tab_type=local) called +2025-03-08 14:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 14:51:23 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1201, tab_type=local) called +2025-03-08 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:23 - INFO - create_for_product(product_id=3822, title=Description, content=La Chope au parfum , nickname=, position=1202, tab_type=local) called +2025-03-08 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:24 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1203, tab_type=local) called +2025-03-08 14:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:26 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1204, tab_type=local) called +2025-03-08 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:26 - INFO - create_for_product(product_id=3822, title=Description, content=La bougie Chope au p, nickname=, position=1205, tab_type=local) called +2025-03-08 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:26 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1206, tab_type=local) called +2025-03-08 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:27 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1207, tab_type=local) called +2025-03-08 14:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:27 - INFO - create_for_product(product_id=3822, title=Description, content=La bougie Chope au p, nickname=, position=1208, tab_type=local) called +2025-03-08 14:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:28 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1209, tab_type=local) called +2025-03-08 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:28 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1210, tab_type=local) called +2025-03-08 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:28 - INFO - create_for_product(product_id=3822, title=Description, content=La Chope au parfum d, nickname=, position=1211, tab_type=local) called +2025-03-08 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:29 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1212, tab_type=local) called +2025-03-08 14:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:29 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1213, tab_type=local) called +2025-03-08 14:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:29 - INFO - create_for_product(product_id=3822, title=Description, content= La bougie Chope au , nickname=, position=1214, tab_type=local) called +2025-03-08 14:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:30 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1215, tab_type=local) called +2025-03-08 14:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:30 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1216, tab_type=local) called +2025-03-08 14:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:31 - INFO - create_for_product(product_id=3822, title=Description, content=Cette Chope au parfu, nickname=, position=1217, tab_type=local) called +2025-03-08 14:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:31 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1218, tab_type=local) called +2025-03-08 14:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:32 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1219, tab_type=local) called +2025-03-08 14:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:32 - INFO - create_for_product(product_id=3822, title=Description, content=Cette Chope au parfu, nickname=, position=1220, tab_type=local) called +2025-03-08 14:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:32 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1221, tab_type=local) called +2025-03-08 14:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:33 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1222, tab_type=local) called +2025-03-08 14:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:33 - INFO - create_for_product(product_id=3822, title=Description, content=Cette Chope au parfu, nickname=, position=1223, tab_type=local) called +2025-03-08 14:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:34 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1224, tab_type=local) called +2025-03-08 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:34 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1225, tab_type=local) called +2025-03-08 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:35 - INFO - create_for_product(product_id=3822, title=Description, content=Cette Chope au parfu, nickname=, position=1226, tab_type=local) called +2025-03-08 14:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:35 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1227, tab_type=local) called +2025-03-08 14:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:36 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1228, tab_type=local) called +2025-03-08 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:36 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1229, tab_type=local) called +2025-03-08 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:36 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1230, tab_type=local) called +2025-03-08 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:37 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1231, tab_type=local) called +2025-03-08 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:37 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1232, tab_type=local) called +2025-03-08 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:38 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1233, tab_type=local) called +2025-03-08 14:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:38 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1234, tab_type=local) called +2025-03-08 14:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:39 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1235, tab_type=local) called +2025-03-08 14:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:39 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1236, tab_type=local) called +2025-03-08 14:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:40 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1237, tab_type=local) called +2025-03-08 14:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:40 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1238, tab_type=local) called +2025-03-08 14:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:41 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1239, tab_type=local) called +2025-03-08 14:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:41 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1240, tab_type=local) called +2025-03-08 14:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:42 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1241, tab_type=local) called +2025-03-08 14:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:42 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1242, tab_type=local) called +2025-03-08 14:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:43 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1243, tab_type=local) called +2025-03-08 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:43 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1244, tab_type=local) called +2025-03-08 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:44 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1245, tab_type=local) called +2025-03-08 14:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:44 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1246, tab_type=local) called +2025-03-08 14:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:45 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1247, tab_type=local) called +2025-03-08 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:45 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1248, tab_type=local) called +2025-03-08 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:46 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1249, tab_type=local) called +2025-03-08 14:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:46 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1250, tab_type=local) called +2025-03-08 14:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:47 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1251, tab_type=local) called +2025-03-08 14:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:47 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1252, tab_type=local) called +2025-03-08 14:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:47 - INFO - create_for_product(product_id=3822, title=Description, content= +Cette bougie est en, nickname=, position=1253, tab_type=local) called +2025-03-08 14:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:48 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1254, tab_type=local) called +2025-03-08 14:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:48 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1255, tab_type=local) called +2025-03-08 14:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:49 - INFO - create_for_product(product_id=3822, title=Description, content= +Cette bougie est en, nickname=, position=1256, tab_type=local) called +2025-03-08 14:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:49 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1257, tab_type=local) called +2025-03-08 14:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:50 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1258, tab_type=local) called +2025-03-08 14:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:50 - INFO - create_for_product(product_id=3822, title=Description, content= +Cette bougie est en, nickname=, position=1259, tab_type=local) called +2025-03-08 14:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:50 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1260, tab_type=local) called +2025-03-08 14:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:51 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1261, tab_type=local) called +2025-03-08 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:51 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1262, tab_type=local) called +2025-03-08 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:52 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1263, tab_type=local) called +2025-03-08 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:52 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1264, tab_type=local) called +2025-03-08 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:53 - INFO - create_for_product(product_id=3822, title=Description, content= +Cette bougie est en, nickname=, position=1265, tab_type=local) called +2025-03-08 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:53 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1266, tab_type=local) called +2025-03-08 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:54 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1267, tab_type=local) called +2025-03-08 14:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:55 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1268, tab_type=local) called +2025-03-08 14:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:56 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1269, tab_type=local) called +2025-03-08 14:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:57 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1270, tab_type=local) called +2025-03-08 14:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:51:57 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1271, tab_type=local) called +2025-03-08 14:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:52:01 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1272, tab_type=local) called +2025-03-08 14:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:52:02 - INFO - create_for_product(product_id=3822, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1273, tab_type=local) called +2025-03-08 14:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:52:03 - INFO - create_for_product(product_id=3822, title=Description, content=Cette bougie est ent, nickname=, position=1274, tab_type=local) called +2025-03-08 14:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:52:03 - INFO - create_for_product(product_id=3822, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1275, tab_type=local) called +2025-03-08 14:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 14:52:04 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1276, tab_type=local) called +2025-03-08 14:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:05 - INFO - create_for_product(product_id=3821, title=Description, content=La Chope au parfum , nickname=, position=1277, tab_type=local) called +2025-03-08 14:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:06 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1278, tab_type=local) called +2025-03-08 14:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:07 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1279, tab_type=local) called +2025-03-08 14:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:08 - INFO - create_for_product(product_id=3821, title=Description, content=La bougie Chope au p, nickname=, position=1280, tab_type=local) called +2025-03-08 14:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:09 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1281, tab_type=local) called +2025-03-08 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:09 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1282, tab_type=local) called +2025-03-08 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:10 - INFO - create_for_product(product_id=3821, title=Description, content=La bougie Chope au p, nickname=, position=1283, tab_type=local) called +2025-03-08 14:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:11 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1284, tab_type=local) called +2025-03-08 14:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:14 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1285, tab_type=local) called +2025-03-08 14:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:15 - INFO - create_for_product(product_id=3821, title=Description, content=La Chope au parfum d, nickname=, position=1286, tab_type=local) called +2025-03-08 14:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:16 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1287, tab_type=local) called +2025-03-08 14:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:17 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1288, tab_type=local) called +2025-03-08 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:17 - INFO - create_for_product(product_id=3821, title=Description, content= La bougie Chope au , nickname=, position=1289, tab_type=local) called +2025-03-08 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:19 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1290, tab_type=local) called +2025-03-08 14:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:21 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1291, tab_type=local) called +2025-03-08 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:22 - INFO - create_for_product(product_id=3821, title=Description, content=Cette Chope au parfu, nickname=, position=1292, tab_type=local) called +2025-03-08 14:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:23 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1293, tab_type=local) called +2025-03-08 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:23 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1294, tab_type=local) called +2025-03-08 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:24 - INFO - create_for_product(product_id=3821, title=Description, content=Cette Chope au parfu, nickname=, position=1295, tab_type=local) called +2025-03-08 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:24 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1296, tab_type=local) called +2025-03-08 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:25 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1297, tab_type=local) called +2025-03-08 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:26 - INFO - create_for_product(product_id=3821, title=Description, content=Cette Chope au parfu, nickname=, position=1298, tab_type=local) called +2025-03-08 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:29 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1299, tab_type=local) called +2025-03-08 14:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:30 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1300, tab_type=local) called +2025-03-08 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:31 - INFO - create_for_product(product_id=3821, title=Description, content=Cette Chope au parfu, nickname=, position=1301, tab_type=local) called +2025-03-08 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:32 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1302, tab_type=local) called +2025-03-08 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:32 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1303, tab_type=local) called +2025-03-08 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:34 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1304, tab_type=local) called +2025-03-08 14:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:36 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1305, tab_type=local) called +2025-03-08 14:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:37 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1306, tab_type=local) called +2025-03-08 14:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:37 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1307, tab_type=local) called +2025-03-08 14:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:38 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1308, tab_type=local) called +2025-03-08 14:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:38 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1309, tab_type=local) called +2025-03-08 14:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:39 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1310, tab_type=local) called +2025-03-08 14:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:39 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1311, tab_type=local) called +2025-03-08 14:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:40 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1312, tab_type=local) called +2025-03-08 14:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:40 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1313, tab_type=local) called +2025-03-08 14:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:41 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1314, tab_type=local) called +2025-03-08 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:41 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1315, tab_type=local) called +2025-03-08 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:42 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1316, tab_type=local) called +2025-03-08 14:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:42 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1317, tab_type=local) called +2025-03-08 14:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:43 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1318, tab_type=local) called +2025-03-08 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:44 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1319, tab_type=local) called +2025-03-08 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:44 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1320, tab_type=local) called +2025-03-08 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:45 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1321, tab_type=local) called +2025-03-08 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:46 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1322, tab_type=local) called +2025-03-08 14:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:47 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1323, tab_type=local) called +2025-03-08 14:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:49 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1324, tab_type=local) called +2025-03-08 14:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:51 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1325, tab_type=local) called +2025-03-08 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:52 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1326, tab_type=local) called +2025-03-08 14:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:53 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1327, tab_type=local) called +2025-03-08 14:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:53 - INFO - create_for_product(product_id=3821, title=Description, content= +Cette bougie est en, nickname=, position=1328, tab_type=local) called +2025-03-08 14:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:54 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1329, tab_type=local) called +2025-03-08 14:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:55 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1330, tab_type=local) called +2025-03-08 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:59 - INFO - create_for_product(product_id=3821, title=Description, content= +Cette bougie est en, nickname=, position=1331, tab_type=local) called +2025-03-08 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:52:59 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1332, tab_type=local) called +2025-03-08 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:00 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1333, tab_type=local) called +2025-03-08 14:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:01 - INFO - create_for_product(product_id=3821, title=Description, content= +Cette bougie est en, nickname=, position=1334, tab_type=local) called +2025-03-08 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:01 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1335, tab_type=local) called +2025-03-08 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:02 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1336, tab_type=local) called +2025-03-08 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:02 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1337, tab_type=local) called +2025-03-08 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:03 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1338, tab_type=local) called +2025-03-08 14:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:04 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1339, tab_type=local) called +2025-03-08 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:04 - INFO - create_for_product(product_id=3821, title=Description, content= +Cette bougie est en, nickname=, position=1340, tab_type=local) called +2025-03-08 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:05 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1341, tab_type=local) called +2025-03-08 14:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:06 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1342, tab_type=local) called +2025-03-08 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:06 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1343, tab_type=local) called +2025-03-08 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:07 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1344, tab_type=local) called +2025-03-08 14:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:08 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1345, tab_type=local) called +2025-03-08 14:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:09 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1346, tab_type=local) called +2025-03-08 14:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:10 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1347, tab_type=local) called +2025-03-08 14:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:12 - INFO - create_for_product(product_id=3821, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1348, tab_type=local) called +2025-03-08 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:15 - INFO - create_for_product(product_id=3821, title=Description, content=Cette bougie est ent, nickname=, position=1349, tab_type=local) called +2025-03-08 14:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:16 - INFO - create_for_product(product_id=3821, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1350, tab_type=local) called +2025-03-08 14:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 14:53:18 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1351, tab_type=local) called +2025-03-08 14:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Description, content=La Chope au parfum , nickname=, position=1352, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1353, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1354, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Description, content=La bougie Chope au p, nickname=, position=1355, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1356, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1357, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Description, content=La bougie Chope au p, nickname=, position=1358, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1359, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:20 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1360, tab_type=local) called +2025-03-08 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Description, content=La Chope au parfum d, nickname=, position=1361, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1362, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1363, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Description, content= La bougie Chope au , nickname=, position=1364, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1365, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1366, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Description, content=Cette Chope au parfu, nickname=, position=1367, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1368, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1369, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:21 - INFO - create_for_product(product_id=3820, title=Description, content=Cette Chope au parfu, nickname=, position=1370, tab_type=local) called +2025-03-08 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:22 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1371, tab_type=local) called +2025-03-08 14:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:22 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1372, tab_type=local) called +2025-03-08 14:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 502 157 +2025-03-08 14:53:22 - INFO - create_for_product(product_id=3820, title=Description, content=Cette Chope au parfu, nickname=, position=1373, tab_type=local) called +2025-03-08 14:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:24 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1374, tab_type=local) called +2025-03-08 14:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:26 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1375, tab_type=local) called +2025-03-08 14:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:27 - INFO - create_for_product(product_id=3820, title=Description, content=Cette Chope au parfu, nickname=, position=1376, tab_type=local) called +2025-03-08 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:28 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1377, tab_type=local) called +2025-03-08 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:29 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1378, tab_type=local) called +2025-03-08 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:30 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1379, tab_type=local) called +2025-03-08 14:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:31 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1380, tab_type=local) called +2025-03-08 14:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:32 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1381, tab_type=local) called +2025-03-08 14:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:33 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1382, tab_type=local) called +2025-03-08 14:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:34 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1383, tab_type=local) called +2025-03-08 14:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:35 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1384, tab_type=local) called +2025-03-08 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:35 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1385, tab_type=local) called +2025-03-08 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:36 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1386, tab_type=local) called +2025-03-08 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:37 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1387, tab_type=local) called +2025-03-08 14:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:38 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1388, tab_type=local) called +2025-03-08 14:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:39 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1389, tab_type=local) called +2025-03-08 14:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:40 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1390, tab_type=local) called +2025-03-08 14:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:43 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1391, tab_type=local) called +2025-03-08 14:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:45 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1392, tab_type=local) called +2025-03-08 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:46 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1393, tab_type=local) called +2025-03-08 14:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:47 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1394, tab_type=local) called +2025-03-08 14:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:48 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1395, tab_type=local) called +2025-03-08 14:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:49 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1396, tab_type=local) called +2025-03-08 14:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:51 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1397, tab_type=local) called +2025-03-08 14:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:55 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1398, tab_type=local) called +2025-03-08 14:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:56 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1399, tab_type=local) called +2025-03-08 14:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:57 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1400, tab_type=local) called +2025-03-08 14:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:58 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1401, tab_type=local) called +2025-03-08 14:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:58 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1402, tab_type=local) called +2025-03-08 14:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:53:59 - INFO - create_for_product(product_id=3820, title=Description, content= +Cette bougie est en, nickname=, position=1403, tab_type=local) called +2025-03-08 14:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:00 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1404, tab_type=local) called +2025-03-08 14:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:01 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1405, tab_type=local) called +2025-03-08 14:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:03 - INFO - create_for_product(product_id=3820, title=Description, content= +Cette bougie est en, nickname=, position=1406, tab_type=local) called +2025-03-08 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:04 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1407, tab_type=local) called +2025-03-08 14:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:07 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1408, tab_type=local) called +2025-03-08 14:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:08 - INFO - create_for_product(product_id=3820, title=Description, content= +Cette bougie est en, nickname=, position=1409, tab_type=local) called +2025-03-08 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:08 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1410, tab_type=local) called +2025-03-08 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:09 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1411, tab_type=local) called +2025-03-08 14:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:10 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1412, tab_type=local) called +2025-03-08 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:11 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1413, tab_type=local) called +2025-03-08 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:15 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1414, tab_type=local) called +2025-03-08 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:16 - INFO - create_for_product(product_id=3820, title=Description, content= +Cette bougie est en, nickname=, position=1415, tab_type=local) called +2025-03-08 14:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:17 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1416, tab_type=local) called +2025-03-08 14:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:18 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1417, tab_type=local) called +2025-03-08 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:18 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1418, tab_type=local) called +2025-03-08 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:20 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1419, tab_type=local) called +2025-03-08 14:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:24 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1420, tab_type=local) called +2025-03-08 14:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:25 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1421, tab_type=local) called +2025-03-08 14:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:25 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1422, tab_type=local) called +2025-03-08 14:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:26 - INFO - create_for_product(product_id=3820, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1423, tab_type=local) called +2025-03-08 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:27 - INFO - create_for_product(product_id=3820, title=Description, content=Cette bougie est ent, nickname=, position=1424, tab_type=local) called +2025-03-08 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:27 - INFO - create_for_product(product_id=3820, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1425, tab_type=local) called +2025-03-08 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 14:54:28 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1426, tab_type=local) called +2025-03-08 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:29 - INFO - create_for_product(product_id=3819, title=Description, content=La Chope au parfum , nickname=, position=1427, tab_type=local) called +2025-03-08 14:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:31 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1428, tab_type=local) called +2025-03-08 14:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:32 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1429, tab_type=local) called +2025-03-08 14:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:33 - INFO - create_for_product(product_id=3819, title=Description, content=La bougie Chope au p, nickname=, position=1430, tab_type=local) called +2025-03-08 14:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:34 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1431, tab_type=local) called +2025-03-08 14:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:35 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1432, tab_type=local) called +2025-03-08 14:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:36 - INFO - create_for_product(product_id=3819, title=Description, content=La bougie Chope au p, nickname=, position=1433, tab_type=local) called +2025-03-08 14:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:38 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1434, tab_type=local) called +2025-03-08 14:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:39 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1435, tab_type=local) called +2025-03-08 14:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:39 - INFO - create_for_product(product_id=3819, title=Description, content=La Chope au parfum d, nickname=, position=1436, tab_type=local) called +2025-03-08 14:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:40 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1437, tab_type=local) called +2025-03-08 14:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:41 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1438, tab_type=local) called +2025-03-08 14:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:42 - INFO - create_for_product(product_id=3819, title=Description, content= La bougie Chope au , nickname=, position=1439, tab_type=local) called +2025-03-08 14:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:43 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1440, tab_type=local) called +2025-03-08 14:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:43 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1441, tab_type=local) called +2025-03-08 14:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:44 - INFO - create_for_product(product_id=3819, title=Description, content=Cette Chope au parfu, nickname=, position=1442, tab_type=local) called +2025-03-08 14:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:48 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1443, tab_type=local) called +2025-03-08 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:49 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1444, tab_type=local) called +2025-03-08 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:49 - INFO - create_for_product(product_id=3819, title=Description, content=Cette Chope au parfu, nickname=, position=1445, tab_type=local) called +2025-03-08 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:50 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1446, tab_type=local) called +2025-03-08 14:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:50 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1447, tab_type=local) called +2025-03-08 14:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:51 - INFO - create_for_product(product_id=3819, title=Description, content=Cette Chope au parfu, nickname=, position=1448, tab_type=local) called +2025-03-08 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:51 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1449, tab_type=local) called +2025-03-08 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:52 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1450, tab_type=local) called +2025-03-08 14:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:53 - INFO - create_for_product(product_id=3819, title=Description, content=Cette Chope au parfu, nickname=, position=1451, tab_type=local) called +2025-03-08 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:53 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1452, tab_type=local) called +2025-03-08 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:54 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1453, tab_type=local) called +2025-03-08 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:55 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1454, tab_type=local) called +2025-03-08 14:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:55 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1455, tab_type=local) called +2025-03-08 14:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:57 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1456, tab_type=local) called +2025-03-08 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:54:57 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1457, tab_type=local) called +2025-03-08 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:00 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1458, tab_type=local) called +2025-03-08 14:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:01 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1459, tab_type=local) called +2025-03-08 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:02 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1460, tab_type=local) called +2025-03-08 14:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:03 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1461, tab_type=local) called +2025-03-08 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:03 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1462, tab_type=local) called +2025-03-08 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:04 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1463, tab_type=local) called +2025-03-08 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:08 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1464, tab_type=local) called +2025-03-08 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:08 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1465, tab_type=local) called +2025-03-08 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:09 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1466, tab_type=local) called +2025-03-08 14:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:10 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1467, tab_type=local) called +2025-03-08 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:10 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1468, tab_type=local) called +2025-03-08 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:11 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1469, tab_type=local) called +2025-03-08 14:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:11 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1470, tab_type=local) called +2025-03-08 14:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:12 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1471, tab_type=local) called +2025-03-08 14:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:13 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1472, tab_type=local) called +2025-03-08 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:15 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1473, tab_type=local) called +2025-03-08 14:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:16 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1474, tab_type=local) called +2025-03-08 14:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:17 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1475, tab_type=local) called +2025-03-08 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:18 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1476, tab_type=local) called +2025-03-08 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:19 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1477, tab_type=local) called +2025-03-08 14:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:21 - INFO - create_for_product(product_id=3819, title=Description, content= +Cette bougie est en, nickname=, position=1478, tab_type=local) called +2025-03-08 14:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:23 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1479, tab_type=local) called +2025-03-08 14:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:24 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1480, tab_type=local) called +2025-03-08 14:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:25 - INFO - create_for_product(product_id=3819, title=Description, content= +Cette bougie est en, nickname=, position=1481, tab_type=local) called +2025-03-08 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:25 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1482, tab_type=local) called +2025-03-08 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:29 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1483, tab_type=local) called +2025-03-08 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:29 - INFO - create_for_product(product_id=3819, title=Description, content= +Cette bougie est en, nickname=, position=1484, tab_type=local) called +2025-03-08 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:30 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1485, tab_type=local) called +2025-03-08 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:30 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1486, tab_type=local) called +2025-03-08 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:31 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1487, tab_type=local) called +2025-03-08 14:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:32 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1488, tab_type=local) called +2025-03-08 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:32 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1489, tab_type=local) called +2025-03-08 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:33 - INFO - create_for_product(product_id=3819, title=Description, content= +Cette bougie est en, nickname=, position=1490, tab_type=local) called +2025-03-08 14:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:34 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1491, tab_type=local) called +2025-03-08 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:34 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1492, tab_type=local) called +2025-03-08 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:34 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1493, tab_type=local) called +2025-03-08 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:35 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1494, tab_type=local) called +2025-03-08 14:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:36 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1495, tab_type=local) called +2025-03-08 14:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:37 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1496, tab_type=local) called +2025-03-08 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:37 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1497, tab_type=local) called +2025-03-08 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:38 - INFO - create_for_product(product_id=3819, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1498, tab_type=local) called +2025-03-08 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:39 - INFO - create_for_product(product_id=3819, title=Description, content=Cette bougie est ent, nickname=, position=1499, tab_type=local) called +2025-03-08 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:39 - INFO - create_for_product(product_id=3819, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1500, tab_type=local) called +2025-03-08 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 14:55:40 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1501, tab_type=local) called +2025-03-08 14:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:42 - INFO - create_for_product(product_id=3818, title=Description, content=La Chope au parfum , nickname=, position=1502, tab_type=local) called +2025-03-08 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:43 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1503, tab_type=local) called +2025-03-08 14:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:47 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1504, tab_type=local) called +2025-03-08 14:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:48 - INFO - create_for_product(product_id=3818, title=Description, content=La bougie Chope au p, nickname=, position=1505, tab_type=local) called +2025-03-08 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:48 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1506, tab_type=local) called +2025-03-08 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:49 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1507, tab_type=local) called +2025-03-08 14:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:50 - INFO - create_for_product(product_id=3818, title=Description, content=La bougie Chope au p, nickname=, position=1508, tab_type=local) called +2025-03-08 14:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:53 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1509, tab_type=local) called +2025-03-08 14:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:54 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1510, tab_type=local) called +2025-03-08 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:54 - INFO - create_for_product(product_id=3818, title=Description, content=La Chope au parfum d, nickname=, position=1511, tab_type=local) called +2025-03-08 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:55 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1512, tab_type=local) called +2025-03-08 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:55 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1513, tab_type=local) called +2025-03-08 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:56 - INFO - create_for_product(product_id=3818, title=Description, content= La bougie Chope au , nickname=, position=1514, tab_type=local) called +2025-03-08 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:56 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1515, tab_type=local) called +2025-03-08 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:57 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1516, tab_type=local) called +2025-03-08 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:58 - INFO - create_for_product(product_id=3818, title=Description, content=Cette Chope au parfu, nickname=, position=1517, tab_type=local) called +2025-03-08 14:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:58 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1518, tab_type=local) called +2025-03-08 14:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:59 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1519, tab_type=local) called +2025-03-08 14:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:55:59 - INFO - create_for_product(product_id=3818, title=Description, content=Cette Chope au parfu, nickname=, position=1520, tab_type=local) called +2025-03-08 14:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:00 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1521, tab_type=local) called +2025-03-08 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:00 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1522, tab_type=local) called +2025-03-08 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:01 - INFO - create_for_product(product_id=3818, title=Description, content=Cette Chope au parfu, nickname=, position=1523, tab_type=local) called +2025-03-08 14:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:01 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1524, tab_type=local) called +2025-03-08 14:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:02 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1525, tab_type=local) called +2025-03-08 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:02 - INFO - create_for_product(product_id=3818, title=Description, content=Cette Chope au parfu, nickname=, position=1526, tab_type=local) called +2025-03-08 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:03 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1527, tab_type=local) called +2025-03-08 14:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:03 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1528, tab_type=local) called +2025-03-08 14:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:04 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1529, tab_type=local) called +2025-03-08 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:04 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1530, tab_type=local) called +2025-03-08 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:05 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1531, tab_type=local) called +2025-03-08 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:06 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1532, tab_type=local) called +2025-03-08 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:06 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1533, tab_type=local) called +2025-03-08 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:07 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1534, tab_type=local) called +2025-03-08 14:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:07 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1535, tab_type=local) called +2025-03-08 14:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:08 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1536, tab_type=local) called +2025-03-08 14:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:08 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1537, tab_type=local) called +2025-03-08 14:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:09 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1538, tab_type=local) called +2025-03-08 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:09 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1539, tab_type=local) called +2025-03-08 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:10 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1540, tab_type=local) called +2025-03-08 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:10 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1541, tab_type=local) called +2025-03-08 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:10 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1542, tab_type=local) called +2025-03-08 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:11 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1543, tab_type=local) called +2025-03-08 14:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:11 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1544, tab_type=local) called +2025-03-08 14:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:12 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1545, tab_type=local) called +2025-03-08 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:12 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1546, tab_type=local) called +2025-03-08 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:12 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1547, tab_type=local) called +2025-03-08 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:13 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1548, tab_type=local) called +2025-03-08 14:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:13 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1549, tab_type=local) called +2025-03-08 14:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:14 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1550, tab_type=local) called +2025-03-08 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:14 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1551, tab_type=local) called +2025-03-08 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:15 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1552, tab_type=local) called +2025-03-08 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:15 - INFO - create_for_product(product_id=3818, title=Description, content= +Cette bougie est en, nickname=, position=1553, tab_type=local) called +2025-03-08 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:15 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1554, tab_type=local) called +2025-03-08 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:16 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1555, tab_type=local) called +2025-03-08 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:16 - INFO - create_for_product(product_id=3818, title=Description, content= +Cette bougie est en, nickname=, position=1556, tab_type=local) called +2025-03-08 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:17 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1557, tab_type=local) called +2025-03-08 14:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:17 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1558, tab_type=local) called +2025-03-08 14:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:18 - INFO - create_for_product(product_id=3818, title=Description, content= +Cette bougie est en, nickname=, position=1559, tab_type=local) called +2025-03-08 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:18 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1560, tab_type=local) called +2025-03-08 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:19 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1561, tab_type=local) called +2025-03-08 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:19 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1562, tab_type=local) called +2025-03-08 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:19 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1563, tab_type=local) called +2025-03-08 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:20 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1564, tab_type=local) called +2025-03-08 14:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:21 - INFO - create_for_product(product_id=3818, title=Description, content= +Cette bougie est en, nickname=, position=1565, tab_type=local) called +2025-03-08 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:21 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1566, tab_type=local) called +2025-03-08 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:22 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1567, tab_type=local) called +2025-03-08 14:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:23 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1568, tab_type=local) called +2025-03-08 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:23 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1569, tab_type=local) called +2025-03-08 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:24 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1570, tab_type=local) called +2025-03-08 14:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:24 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1571, tab_type=local) called +2025-03-08 14:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:25 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1572, tab_type=local) called +2025-03-08 14:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:26 - INFO - create_for_product(product_id=3818, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1573, tab_type=local) called +2025-03-08 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:26 - INFO - create_for_product(product_id=3818, title=Description, content=Cette bougie est ent, nickname=, position=1574, tab_type=local) called +2025-03-08 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:27 - INFO - create_for_product(product_id=3818, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1575, tab_type=local) called +2025-03-08 14:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 14:56:27 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1576, tab_type=local) called +2025-03-08 14:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:29 - INFO - create_for_product(product_id=3817, title=Description, content=La Chope au parfum , nickname=, position=1577, tab_type=local) called +2025-03-08 14:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:30 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1578, tab_type=local) called +2025-03-08 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:31 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1579, tab_type=local) called +2025-03-08 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:32 - INFO - create_for_product(product_id=3817, title=Description, content=La bougie Chope au p, nickname=, position=1580, tab_type=local) called +2025-03-08 14:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:32 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1581, tab_type=local) called +2025-03-08 14:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:33 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1582, tab_type=local) called +2025-03-08 14:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:34 - INFO - create_for_product(product_id=3817, title=Description, content=La bougie Chope au p, nickname=, position=1583, tab_type=local) called +2025-03-08 14:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:34 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1584, tab_type=local) called +2025-03-08 14:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:35 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1585, tab_type=local) called +2025-03-08 14:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:36 - INFO - create_for_product(product_id=3817, title=Description, content=La Chope au parfum d, nickname=, position=1586, tab_type=local) called +2025-03-08 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:36 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1587, tab_type=local) called +2025-03-08 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:37 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1588, tab_type=local) called +2025-03-08 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:37 - INFO - create_for_product(product_id=3817, title=Description, content= La bougie Chope au , nickname=, position=1589, tab_type=local) called +2025-03-08 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:38 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1590, tab_type=local) called +2025-03-08 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:38 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1591, tab_type=local) called +2025-03-08 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:39 - INFO - create_for_product(product_id=3817, title=Description, content=Cette Chope au parfu, nickname=, position=1592, tab_type=local) called +2025-03-08 14:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:40 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1593, tab_type=local) called +2025-03-08 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:40 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1594, tab_type=local) called +2025-03-08 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:41 - INFO - create_for_product(product_id=3817, title=Description, content=Cette Chope au parfu, nickname=, position=1595, tab_type=local) called +2025-03-08 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:41 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1596, tab_type=local) called +2025-03-08 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:42 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1597, tab_type=local) called +2025-03-08 14:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:43 - INFO - create_for_product(product_id=3817, title=Description, content=Cette Chope au parfu, nickname=, position=1598, tab_type=local) called +2025-03-08 14:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:43 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1599, tab_type=local) called +2025-03-08 14:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:44 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1600, tab_type=local) called +2025-03-08 14:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:44 - INFO - create_for_product(product_id=3817, title=Description, content=Cette Chope au parfu, nickname=, position=1601, tab_type=local) called +2025-03-08 14:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:45 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1602, tab_type=local) called +2025-03-08 14:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:46 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1603, tab_type=local) called +2025-03-08 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:46 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1604, tab_type=local) called +2025-03-08 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:47 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1605, tab_type=local) called +2025-03-08 14:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:48 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1606, tab_type=local) called +2025-03-08 14:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:48 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1607, tab_type=local) called +2025-03-08 14:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:49 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1608, tab_type=local) called +2025-03-08 14:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:49 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1609, tab_type=local) called +2025-03-08 14:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:50 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1610, tab_type=local) called +2025-03-08 14:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:51 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1611, tab_type=local) called +2025-03-08 14:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:51 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1612, tab_type=local) called +2025-03-08 14:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:52 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1613, tab_type=local) called +2025-03-08 14:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:52 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1614, tab_type=local) called +2025-03-08 14:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:53 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1615, tab_type=local) called +2025-03-08 14:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:54 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1616, tab_type=local) called +2025-03-08 14:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:54 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1617, tab_type=local) called +2025-03-08 14:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:55 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1618, tab_type=local) called +2025-03-08 14:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:56 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1619, tab_type=local) called +2025-03-08 14:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:56 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1620, tab_type=local) called +2025-03-08 14:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:57 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1621, tab_type=local) called +2025-03-08 14:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:57 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1622, tab_type=local) called +2025-03-08 14:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:58 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1623, tab_type=local) called +2025-03-08 14:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:59 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1624, tab_type=local) called +2025-03-08 14:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:56:59 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1625, tab_type=local) called +2025-03-08 14:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:00 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1626, tab_type=local) called +2025-03-08 14:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:01 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1627, tab_type=local) called +2025-03-08 14:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:01 - INFO - create_for_product(product_id=3817, title=Description, content= +Cette bougie est en, nickname=, position=1628, tab_type=local) called +2025-03-08 14:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:02 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1629, tab_type=local) called +2025-03-08 14:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:03 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1630, tab_type=local) called +2025-03-08 14:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:03 - INFO - create_for_product(product_id=3817, title=Description, content= +Cette bougie est en, nickname=, position=1631, tab_type=local) called +2025-03-08 14:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:04 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1632, tab_type=local) called +2025-03-08 14:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:05 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1633, tab_type=local) called +2025-03-08 14:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:06 - INFO - create_for_product(product_id=3817, title=Description, content= +Cette bougie est en, nickname=, position=1634, tab_type=local) called +2025-03-08 14:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:06 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1635, tab_type=local) called +2025-03-08 14:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:07 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1636, tab_type=local) called +2025-03-08 14:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:08 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1637, tab_type=local) called +2025-03-08 14:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:09 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1638, tab_type=local) called +2025-03-08 14:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:10 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1639, tab_type=local) called +2025-03-08 14:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:14 - INFO - create_for_product(product_id=3817, title=Description, content= +Cette bougie est en, nickname=, position=1640, tab_type=local) called +2025-03-08 14:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:15 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1641, tab_type=local) called +2025-03-08 14:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:16 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1642, tab_type=local) called +2025-03-08 14:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:17 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1643, tab_type=local) called +2025-03-08 14:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:18 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1644, tab_type=local) called +2025-03-08 14:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:19 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1645, tab_type=local) called +2025-03-08 14:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:22 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1646, tab_type=local) called +2025-03-08 14:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:24 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1647, tab_type=local) called +2025-03-08 14:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:25 - INFO - create_for_product(product_id=3817, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1648, tab_type=local) called +2025-03-08 14:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:26 - INFO - create_for_product(product_id=3817, title=Description, content=Cette bougie est ent, nickname=, position=1649, tab_type=local) called +2025-03-08 14:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:27 - INFO - create_for_product(product_id=3817, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1650, tab_type=local) called +2025-03-08 14:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 14:57:30 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1651, tab_type=local) called +2025-03-08 14:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:33 - INFO - create_for_product(product_id=3816, title=Description, content=La Chope au parfum , nickname=, position=1652, tab_type=local) called +2025-03-08 14:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:35 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1653, tab_type=local) called +2025-03-08 14:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:39 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1654, tab_type=local) called +2025-03-08 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:40 - INFO - create_for_product(product_id=3816, title=Description, content=La bougie Chope au p, nickname=, position=1655, tab_type=local) called +2025-03-08 14:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:41 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1656, tab_type=local) called +2025-03-08 14:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:42 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1657, tab_type=local) called +2025-03-08 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:42 - INFO - create_for_product(product_id=3816, title=Description, content=La bougie Chope au p, nickname=, position=1658, tab_type=local) called +2025-03-08 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:43 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1659, tab_type=local) called +2025-03-08 14:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:44 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1660, tab_type=local) called +2025-03-08 14:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:46 - INFO - create_for_product(product_id=3816, title=Description, content=La Chope au parfum d, nickname=, position=1661, tab_type=local) called +2025-03-08 14:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:48 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1662, tab_type=local) called +2025-03-08 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:49 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1663, tab_type=local) called +2025-03-08 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:50 - INFO - create_for_product(product_id=3816, title=Description, content= La bougie Chope au , nickname=, position=1664, tab_type=local) called +2025-03-08 14:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:51 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1665, tab_type=local) called +2025-03-08 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:51 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1666, tab_type=local) called +2025-03-08 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:53 - INFO - create_for_product(product_id=3816, title=Description, content=Cette Chope au parfu, nickname=, position=1667, tab_type=local) called +2025-03-08 14:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:56 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1668, tab_type=local) called +2025-03-08 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:56 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1669, tab_type=local) called +2025-03-08 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:57 - INFO - create_for_product(product_id=3816, title=Description, content=Cette Chope au parfu, nickname=, position=1670, tab_type=local) called +2025-03-08 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:57 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1671, tab_type=local) called +2025-03-08 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:58 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1672, tab_type=local) called +2025-03-08 14:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:59 - INFO - create_for_product(product_id=3816, title=Description, content=Cette Chope au parfu, nickname=, position=1673, tab_type=local) called +2025-03-08 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:57:59 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1674, tab_type=local) called +2025-03-08 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:00 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1675, tab_type=local) called +2025-03-08 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:00 - INFO - create_for_product(product_id=3816, title=Description, content=Cette Chope au parfu, nickname=, position=1676, tab_type=local) called +2025-03-08 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:01 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1677, tab_type=local) called +2025-03-08 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:01 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1678, tab_type=local) called +2025-03-08 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:02 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1679, tab_type=local) called +2025-03-08 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:03 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1680, tab_type=local) called +2025-03-08 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:03 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1681, tab_type=local) called +2025-03-08 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:04 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1682, tab_type=local) called +2025-03-08 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:04 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1683, tab_type=local) called +2025-03-08 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:04 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1684, tab_type=local) called +2025-03-08 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:05 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1685, tab_type=local) called +2025-03-08 14:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:05 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1686, tab_type=local) called +2025-03-08 14:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:06 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1687, tab_type=local) called +2025-03-08 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:07 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1688, tab_type=local) called +2025-03-08 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:07 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1689, tab_type=local) called +2025-03-08 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:08 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1690, tab_type=local) called +2025-03-08 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:08 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1691, tab_type=local) called +2025-03-08 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:09 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1692, tab_type=local) called +2025-03-08 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:09 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1693, tab_type=local) called +2025-03-08 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:09 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1694, tab_type=local) called +2025-03-08 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:10 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1695, tab_type=local) called +2025-03-08 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:10 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1696, tab_type=local) called +2025-03-08 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:11 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1697, tab_type=local) called +2025-03-08 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:11 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1698, tab_type=local) called +2025-03-08 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:12 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1699, tab_type=local) called +2025-03-08 14:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:12 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1700, tab_type=local) called +2025-03-08 14:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:13 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1701, tab_type=local) called +2025-03-08 14:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:13 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1702, tab_type=local) called +2025-03-08 14:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:14 - INFO - create_for_product(product_id=3816, title=Description, content= +Cette bougie est en, nickname=, position=1703, tab_type=local) called +2025-03-08 14:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:14 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1704, tab_type=local) called +2025-03-08 14:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:14 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1705, tab_type=local) called +2025-03-08 14:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:15 - INFO - create_for_product(product_id=3816, title=Description, content= +Cette bougie est en, nickname=, position=1706, tab_type=local) called +2025-03-08 14:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:15 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1707, tab_type=local) called +2025-03-08 14:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:16 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1708, tab_type=local) called +2025-03-08 14:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:16 - INFO - create_for_product(product_id=3816, title=Description, content= +Cette bougie est en, nickname=, position=1709, tab_type=local) called +2025-03-08 14:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:17 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1710, tab_type=local) called +2025-03-08 14:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:18 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1711, tab_type=local) called +2025-03-08 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:18 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1712, tab_type=local) called +2025-03-08 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:19 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1713, tab_type=local) called +2025-03-08 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:19 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1714, tab_type=local) called +2025-03-08 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:20 - INFO - create_for_product(product_id=3816, title=Description, content= +Cette bougie est en, nickname=, position=1715, tab_type=local) called +2025-03-08 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:20 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1716, tab_type=local) called +2025-03-08 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:21 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1717, tab_type=local) called +2025-03-08 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:21 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1718, tab_type=local) called +2025-03-08 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:22 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1719, tab_type=local) called +2025-03-08 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:22 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1720, tab_type=local) called +2025-03-08 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:22 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1721, tab_type=local) called +2025-03-08 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:24 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1722, tab_type=local) called +2025-03-08 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:24 - INFO - create_for_product(product_id=3816, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1723, tab_type=local) called +2025-03-08 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:25 - INFO - create_for_product(product_id=3816, title=Description, content=Cette bougie est ent, nickname=, position=1724, tab_type=local) called +2025-03-08 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:25 - INFO - create_for_product(product_id=3816, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1725, tab_type=local) called +2025-03-08 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 14:58:25 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1726, tab_type=local) called +2025-03-08 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:26 - INFO - create_for_product(product_id=3815, title=Description, content=La Chope au parfum , nickname=, position=1727, tab_type=local) called +2025-03-08 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:27 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1728, tab_type=local) called +2025-03-08 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:28 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1729, tab_type=local) called +2025-03-08 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:29 - INFO - create_for_product(product_id=3815, title=Description, content=La bougie Chope au p, nickname=, position=1730, tab_type=local) called +2025-03-08 14:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:29 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1731, tab_type=local) called +2025-03-08 14:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:30 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1732, tab_type=local) called +2025-03-08 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:30 - INFO - create_for_product(product_id=3815, title=Description, content=La bougie Chope au p, nickname=, position=1733, tab_type=local) called +2025-03-08 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:30 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1734, tab_type=local) called +2025-03-08 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:31 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1735, tab_type=local) called +2025-03-08 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:31 - INFO - create_for_product(product_id=3815, title=Description, content=La Chope au parfum d, nickname=, position=1736, tab_type=local) called +2025-03-08 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:32 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1737, tab_type=local) called +2025-03-08 14:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:32 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1738, tab_type=local) called +2025-03-08 14:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:33 - INFO - create_for_product(product_id=3815, title=Description, content= La bougie Chope au , nickname=, position=1739, tab_type=local) called +2025-03-08 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:33 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1740, tab_type=local) called +2025-03-08 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:33 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1741, tab_type=local) called +2025-03-08 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:34 - INFO - create_for_product(product_id=3815, title=Description, content=Cette Chope au parfu, nickname=, position=1742, tab_type=local) called +2025-03-08 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:34 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1743, tab_type=local) called +2025-03-08 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:35 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1744, tab_type=local) called +2025-03-08 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:35 - INFO - create_for_product(product_id=3815, title=Description, content=Cette Chope au parfu, nickname=, position=1745, tab_type=local) called +2025-03-08 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:36 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1746, tab_type=local) called +2025-03-08 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:36 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1747, tab_type=local) called +2025-03-08 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:37 - INFO - create_for_product(product_id=3815, title=Description, content=Cette Chope au parfu, nickname=, position=1748, tab_type=local) called +2025-03-08 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:37 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1749, tab_type=local) called +2025-03-08 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:37 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1750, tab_type=local) called +2025-03-08 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:38 - INFO - create_for_product(product_id=3815, title=Description, content=Cette Chope au parfu, nickname=, position=1751, tab_type=local) called +2025-03-08 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:38 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1752, tab_type=local) called +2025-03-08 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:39 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1753, tab_type=local) called +2025-03-08 14:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:39 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1754, tab_type=local) called +2025-03-08 14:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:40 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1755, tab_type=local) called +2025-03-08 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:40 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1756, tab_type=local) called +2025-03-08 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:41 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1757, tab_type=local) called +2025-03-08 14:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:42 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1758, tab_type=local) called +2025-03-08 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:42 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1759, tab_type=local) called +2025-03-08 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:43 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1760, tab_type=local) called +2025-03-08 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:43 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1761, tab_type=local) called +2025-03-08 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:44 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1762, tab_type=local) called +2025-03-08 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:44 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1763, tab_type=local) called +2025-03-08 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:45 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1764, tab_type=local) called +2025-03-08 14:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:45 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1765, tab_type=local) called +2025-03-08 14:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:46 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1766, tab_type=local) called +2025-03-08 14:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:46 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1767, tab_type=local) called +2025-03-08 14:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:47 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1768, tab_type=local) called +2025-03-08 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:47 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1769, tab_type=local) called +2025-03-08 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:48 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1770, tab_type=local) called +2025-03-08 14:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:48 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1771, tab_type=local) called +2025-03-08 14:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:49 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1772, tab_type=local) called +2025-03-08 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:49 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1773, tab_type=local) called +2025-03-08 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:49 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1774, tab_type=local) called +2025-03-08 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:50 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1775, tab_type=local) called +2025-03-08 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:50 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1776, tab_type=local) called +2025-03-08 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:51 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1777, tab_type=local) called +2025-03-08 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:51 - INFO - create_for_product(product_id=3815, title=Description, content= +Cette bougie est en, nickname=, position=1778, tab_type=local) called +2025-03-08 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:52 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1779, tab_type=local) called +2025-03-08 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:52 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1780, tab_type=local) called +2025-03-08 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:53 - INFO - create_for_product(product_id=3815, title=Description, content= +Cette bougie est en, nickname=, position=1781, tab_type=local) called +2025-03-08 14:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:53 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1782, tab_type=local) called +2025-03-08 14:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:54 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1783, tab_type=local) called +2025-03-08 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:54 - INFO - create_for_product(product_id=3815, title=Description, content= +Cette bougie est en, nickname=, position=1784, tab_type=local) called +2025-03-08 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:54 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1785, tab_type=local) called +2025-03-08 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:55 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1786, tab_type=local) called +2025-03-08 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:55 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1787, tab_type=local) called +2025-03-08 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:56 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1788, tab_type=local) called +2025-03-08 14:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:56 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1789, tab_type=local) called +2025-03-08 14:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:56 - INFO - create_for_product(product_id=3815, title=Description, content= +Cette bougie est en, nickname=, position=1790, tab_type=local) called +2025-03-08 14:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:57 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1791, tab_type=local) called +2025-03-08 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:57 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1792, tab_type=local) called +2025-03-08 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:58 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1793, tab_type=local) called +2025-03-08 14:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:58 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1794, tab_type=local) called +2025-03-08 14:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:59 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1795, tab_type=local) called +2025-03-08 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:59 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1796, tab_type=local) called +2025-03-08 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:58:59 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1797, tab_type=local) called +2025-03-08 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:59:00 - INFO - create_for_product(product_id=3815, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1798, tab_type=local) called +2025-03-08 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:59:00 - INFO - create_for_product(product_id=3815, title=Description, content=Cette bougie est ent, nickname=, position=1799, tab_type=local) called +2025-03-08 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:59:01 - INFO - create_for_product(product_id=3815, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1800, tab_type=local) called +2025-03-08 14:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 14:59:01 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1801, tab_type=local) called +2025-03-08 14:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:02 - INFO - create_for_product(product_id=3814, title=Description, content=La Chope au parfum , nickname=, position=1802, tab_type=local) called +2025-03-08 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:03 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1803, tab_type=local) called +2025-03-08 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:04 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1804, tab_type=local) called +2025-03-08 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:04 - INFO - create_for_product(product_id=3814, title=Description, content=La bougie Chope au p, nickname=, position=1805, tab_type=local) called +2025-03-08 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:05 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1806, tab_type=local) called +2025-03-08 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:05 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1807, tab_type=local) called +2025-03-08 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:06 - INFO - create_for_product(product_id=3814, title=Description, content=La bougie Chope au p, nickname=, position=1808, tab_type=local) called +2025-03-08 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:06 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1809, tab_type=local) called +2025-03-08 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:06 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1810, tab_type=local) called +2025-03-08 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:07 - INFO - create_for_product(product_id=3814, title=Description, content=La Chope au parfum d, nickname=, position=1811, tab_type=local) called +2025-03-08 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:07 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1812, tab_type=local) called +2025-03-08 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:08 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1813, tab_type=local) called +2025-03-08 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:08 - INFO - create_for_product(product_id=3814, title=Description, content= La bougie Chope au , nickname=, position=1814, tab_type=local) called +2025-03-08 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:09 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1815, tab_type=local) called +2025-03-08 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:09 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1816, tab_type=local) called +2025-03-08 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:10 - INFO - create_for_product(product_id=3814, title=Description, content=Cette Chope au parfu, nickname=, position=1817, tab_type=local) called +2025-03-08 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:10 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1818, tab_type=local) called +2025-03-08 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:10 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1819, tab_type=local) called +2025-03-08 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:11 - INFO - create_for_product(product_id=3814, title=Description, content=Cette Chope au parfu, nickname=, position=1820, tab_type=local) called +2025-03-08 14:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:11 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1821, tab_type=local) called +2025-03-08 14:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:12 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1822, tab_type=local) called +2025-03-08 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:12 - INFO - create_for_product(product_id=3814, title=Description, content=Cette Chope au parfu, nickname=, position=1823, tab_type=local) called +2025-03-08 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:13 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1824, tab_type=local) called +2025-03-08 14:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:13 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1825, tab_type=local) called +2025-03-08 14:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:14 - INFO - create_for_product(product_id=3814, title=Description, content=Cette Chope au parfu, nickname=, position=1826, tab_type=local) called +2025-03-08 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:14 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1827, tab_type=local) called +2025-03-08 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:14 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1828, tab_type=local) called +2025-03-08 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:15 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1829, tab_type=local) called +2025-03-08 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:15 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1830, tab_type=local) called +2025-03-08 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:16 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1831, tab_type=local) called +2025-03-08 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:16 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1832, tab_type=local) called +2025-03-08 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:16 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1833, tab_type=local) called +2025-03-08 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:17 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1834, tab_type=local) called +2025-03-08 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:17 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1835, tab_type=local) called +2025-03-08 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:18 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1836, tab_type=local) called +2025-03-08 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:18 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1837, tab_type=local) called +2025-03-08 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:19 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1838, tab_type=local) called +2025-03-08 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:19 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1839, tab_type=local) called +2025-03-08 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:19 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1840, tab_type=local) called +2025-03-08 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:20 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1841, tab_type=local) called +2025-03-08 14:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:20 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1842, tab_type=local) called +2025-03-08 14:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:21 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1843, tab_type=local) called +2025-03-08 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:21 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1844, tab_type=local) called +2025-03-08 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:21 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1845, tab_type=local) called +2025-03-08 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:23 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1846, tab_type=local) called +2025-03-08 14:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:23 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1847, tab_type=local) called +2025-03-08 14:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:24 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1848, tab_type=local) called +2025-03-08 14:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:24 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1849, tab_type=local) called +2025-03-08 14:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:25 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1850, tab_type=local) called +2025-03-08 14:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:25 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1851, tab_type=local) called +2025-03-08 14:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:26 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1852, tab_type=local) called +2025-03-08 14:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:26 - INFO - create_for_product(product_id=3814, title=Description, content= +Cette bougie est en, nickname=, position=1853, tab_type=local) called +2025-03-08 14:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:26 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1854, tab_type=local) called +2025-03-08 14:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:27 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1855, tab_type=local) called +2025-03-08 14:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:27 - INFO - create_for_product(product_id=3814, title=Description, content= +Cette bougie est en, nickname=, position=1856, tab_type=local) called +2025-03-08 14:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:28 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1857, tab_type=local) called +2025-03-08 14:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:28 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1858, tab_type=local) called +2025-03-08 14:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:29 - INFO - create_for_product(product_id=3814, title=Description, content= +Cette bougie est en, nickname=, position=1859, tab_type=local) called +2025-03-08 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:29 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1860, tab_type=local) called +2025-03-08 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:29 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1861, tab_type=local) called +2025-03-08 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:30 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1862, tab_type=local) called +2025-03-08 14:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:30 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1863, tab_type=local) called +2025-03-08 14:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:31 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1864, tab_type=local) called +2025-03-08 14:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:31 - INFO - create_for_product(product_id=3814, title=Description, content= +Cette bougie est en, nickname=, position=1865, tab_type=local) called +2025-03-08 14:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:32 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1866, tab_type=local) called +2025-03-08 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:32 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1867, tab_type=local) called +2025-03-08 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:32 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1868, tab_type=local) called +2025-03-08 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:33 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1869, tab_type=local) called +2025-03-08 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:33 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1870, tab_type=local) called +2025-03-08 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:34 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1871, tab_type=local) called +2025-03-08 14:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:34 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1872, tab_type=local) called +2025-03-08 14:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:35 - INFO - create_for_product(product_id=3814, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1873, tab_type=local) called +2025-03-08 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:35 - INFO - create_for_product(product_id=3814, title=Description, content=Cette bougie est ent, nickname=, position=1874, tab_type=local) called +2025-03-08 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:36 - INFO - create_for_product(product_id=3814, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1875, tab_type=local) called +2025-03-08 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 14:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 14:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 15:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 15:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 15:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 15:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 15:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 15:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 15:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 15:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 15:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 15:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 15:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 15:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 15:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 15:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 15:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 15:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 15:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 15:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 15:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 15:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 15:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 16:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 16:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-08 16:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-08 16:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-08 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 400 None +2025-03-08 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-08 16:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 400 None +2025-03-08 16:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-08 16:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 400 None +2025-03-08 16:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-08 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 400 None +2025-03-08 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-08 16:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 400 None +2025-03-08 16:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-08 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 400 None +2025-03-08 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-08 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 400 None +2025-03-08 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-08 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 400 None +2025-03-08 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-08 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 400 None +2025-03-08 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-08 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 400 None +2025-03-08 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-08 16:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 400 None +2025-03-08 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-08 16:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 400 None +2025-03-08 16:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-08 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 400 None +2025-03-08 16:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-08 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 400 None +2025-03-08 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3823 HTTP/1.1" 200 None +2025-03-08 16:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3823 HTTP/1.1" 400 None +2025-03-08 16:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3822 HTTP/1.1" 200 None +2025-03-08 16:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3822 HTTP/1.1" 400 None +2025-03-08 16:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3821 HTTP/1.1" 200 None +2025-03-08 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3821 HTTP/1.1" 400 None +2025-03-08 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3820 HTTP/1.1" 200 None +2025-03-08 16:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3820 HTTP/1.1" 400 None +2025-03-08 16:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3819 HTTP/1.1" 200 None +2025-03-08 16:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3819 HTTP/1.1" 400 None +2025-03-08 16:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3818 HTTP/1.1" 200 None +2025-03-08 16:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3818 HTTP/1.1" 400 None +2025-03-08 16:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3817 HTTP/1.1" 200 None +2025-03-08 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3817 HTTP/1.1" 400 None +2025-03-08 16:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3816 HTTP/1.1" 200 None +2025-03-08 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3816 HTTP/1.1" 400 None +2025-03-08 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3815 HTTP/1.1" 200 None +2025-03-08 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3815 HTTP/1.1" 400 None +2025-03-08 16:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3814 HTTP/1.1" 200 None +2025-03-08 17:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3814 HTTP/1.1" 400 None +2025-03-08 17:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3819?force=True HTTP/1.1" 200 None +2025-03-08 17:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:06:25 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:26 - INFO - create_for_product(product_id=3846, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:27 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:27 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:28 - INFO - create_for_product(product_id=3846, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:28 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:28 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:29 - INFO - create_for_product(product_id=3846, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:29 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:29 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:29 - INFO - create_for_product(product_id=3846, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:30 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:30 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:30 - INFO - create_for_product(product_id=3846, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:31 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:31 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:31 - INFO - create_for_product(product_id=3846, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:31 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:32 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:32 - INFO - create_for_product(product_id=3846, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:32 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:33 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:33 - INFO - create_for_product(product_id=3846, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:33 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:34 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:34 - INFO - create_for_product(product_id=3846, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:34 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:34 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:35 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:35 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:35 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:36 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:36 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:36 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:36 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:37 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:37 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:37 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:38 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:38 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:38 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:39 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:39 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:39 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:39 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:40 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:40 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:40 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:40 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:41 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:41 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:41 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:42 - INFO - create_for_product(product_id=3846, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:42 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:42 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:42 - INFO - create_for_product(product_id=3846, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:43 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:43 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:43 - INFO - create_for_product(product_id=3846, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:44 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:44 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:44 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:45 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:45 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:45 - INFO - create_for_product(product_id=3846, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:45 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:46 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 17:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:52 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 17:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:52 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 17:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:53 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:53 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:53 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:54 - INFO - create_for_product(product_id=3846, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:54 - INFO - create_for_product(product_id=3846, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-08 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:54 - INFO - create_for_product(product_id=3846, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3846 HTTP/1.1" 200 None +2025-03-08 17:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3846 HTTP/1.1" 400 None +2025-03-08 17:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3846?force=True HTTP/1.1" 200 None +2025-03-08 17:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:10:05 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:06 - INFO - create_for_product(product_id=3847, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:07 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:07 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:08 - INFO - create_for_product(product_id=3847, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:08 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:08 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:09 - INFO - create_for_product(product_id=3847, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:09 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:09 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:10 - INFO - create_for_product(product_id=3847, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:10 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:10 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:10 - INFO - create_for_product(product_id=3847, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:11 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:11 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:11 - INFO - create_for_product(product_id=3847, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:12 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:12 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:12 - INFO - create_for_product(product_id=3847, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:12 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:13 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:13 - INFO - create_for_product(product_id=3847, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:13 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:14 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:14 - INFO - create_for_product(product_id=3847, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:14 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:14 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:15 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:15 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:15 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:16 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:16 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:16 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:17 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:17 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:18 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:18 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:18 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:19 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:19 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:20 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:20 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:20 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:21 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:21 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:21 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:22 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:22 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:23 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:23 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:24 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:24 - INFO - create_for_product(product_id=3847, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:24 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:25 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:25 - INFO - create_for_product(product_id=3847, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:26 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:26 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:26 - INFO - create_for_product(product_id=3847, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:27 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:27 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:28 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:28 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:28 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:29 - INFO - create_for_product(product_id=3847, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:29 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:29 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 17:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:30 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 17:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:30 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 17:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:30 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 17:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:31 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 17:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:31 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 17:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:31 - INFO - create_for_product(product_id=3847, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 17:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:32 - INFO - create_for_product(product_id=3847, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-08 17:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:32 - INFO - create_for_product(product_id=3847, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 17:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3847 HTTP/1.1" 400 None +2025-03-08 17:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3847 HTTP/1.1" 200 None +2025-03-08 17:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3847?force=True HTTP/1.1" 200 None +2025-03-08 17:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:13:18 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:19 - INFO - create_for_product(product_id=3848, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:20 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:20 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:21 - INFO - create_for_product(product_id=3848, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:21 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:21 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:22 - INFO - create_for_product(product_id=3848, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:22 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:23 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:23 - INFO - create_for_product(product_id=3848, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:23 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:23 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:24 - INFO - create_for_product(product_id=3848, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:24 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:24 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:25 - INFO - create_for_product(product_id=3848, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:25 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:25 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:25 - INFO - create_for_product(product_id=3848, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:26 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:26 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:26 - INFO - create_for_product(product_id=3848, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:27 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:27 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:27 - INFO - create_for_product(product_id=3848, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:27 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:28 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:28 - INFO - create_for_product(product_id=3848, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:28 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:29 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:29 - INFO - create_for_product(product_id=3848, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:29 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:29 - INFO - create_for_product(product_id=3848, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:30 - INFO - create_for_product(product_id=3848, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3848 HTTP/1.1" 200 None +2025-03-08 17:13:30 - INFO - create_for_product(product_id=3848, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3848?force=True HTTP/1.1" 200 None +2025-03-08 17:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:16:54 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:55 - INFO - create_for_product(product_id=3849, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:56 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:56 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:57 - INFO - create_for_product(product_id=3849, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:57 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:57 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:58 - INFO - create_for_product(product_id=3849, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:58 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:58 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:58 - INFO - create_for_product(product_id=3849, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:59 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:59 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:16:59 - INFO - create_for_product(product_id=3849, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:00 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:00 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:00 - INFO - create_for_product(product_id=3849, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:01 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:01 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:01 - INFO - create_for_product(product_id=3849, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:01 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:02 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:02 - INFO - create_for_product(product_id=3849, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:02 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:03 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:03 - INFO - create_for_product(product_id=3849, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:03 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:03 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:04 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:04 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:04 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:05 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:05 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:05 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:05 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:06 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:06 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:06 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:07 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:07 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:07 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:08 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:08 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:08 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:08 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:09 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:09 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:09 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:10 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:10 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:10 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:10 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:11 - INFO - create_for_product(product_id=3849, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:11 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:11 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:12 - INFO - create_for_product(product_id=3849, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:12 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:12 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:13 - INFO - create_for_product(product_id=3849, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:13 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:13 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:13 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:14 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:14 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:14 - INFO - create_for_product(product_id=3849, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:14 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:15 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 17:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:15 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 17:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:15 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 17:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:16 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 17:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:16 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 17:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:16 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 17:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:16 - INFO - create_for_product(product_id=3849, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 17:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:17 - INFO - create_for_product(product_id=3849, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-08 17:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:17 - INFO - create_for_product(product_id=3849, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 17:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3849 HTTP/1.1" 200 None +2025-03-08 17:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3849 HTTP/1.1" 400 None +2025-03-08 17:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3849?force=True HTTP/1.1" 200 None +2025-03-08 17:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:18:42 - INFO - create_for_product(product_id=3850, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:42 - INFO - create_for_product(product_id=3850, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:43 - INFO - create_for_product(product_id=3850, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:44 - INFO - create_for_product(product_id=3850, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:45 - INFO - create_for_product(product_id=3850, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:45 - INFO - create_for_product(product_id=3850, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:45 - INFO - create_for_product(product_id=3850, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:46 - INFO - create_for_product(product_id=3850, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3850 HTTP/1.1" 200 None +2025-03-08 17:18:46 - INFO - create_for_product(product_id=3850, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3850?force=True HTTP/1.1" 200 None +2025-03-08 17:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:19:50 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:51 - INFO - create_for_product(product_id=3851, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:51 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:52 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:52 - INFO - create_for_product(product_id=3851, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:52 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:53 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:53 - INFO - create_for_product(product_id=3851, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:53 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:54 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:54 - INFO - create_for_product(product_id=3851, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:54 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:54 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:55 - INFO - create_for_product(product_id=3851, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:55 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:55 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:56 - INFO - create_for_product(product_id=3851, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:56 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:56 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:56 - INFO - create_for_product(product_id=3851, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:57 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:57 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:57 - INFO - create_for_product(product_id=3851, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:58 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:58 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:58 - INFO - create_for_product(product_id=3851, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:58 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:59 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:59 - INFO - create_for_product(product_id=3851, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:19:59 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:00 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:00 - INFO - create_for_product(product_id=3851, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:00 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:00 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:01 - INFO - create_for_product(product_id=3851, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:01 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:01 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:02 - INFO - create_for_product(product_id=3851, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:02 - INFO - create_for_product(product_id=3851, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3851 HTTP/1.1" 200 None +2025-03-08 17:20:02 - INFO - create_for_product(product_id=3851, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3851?force=True HTTP/1.1" 200 None +2025-03-08 17:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:23:38 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:39 - INFO - create_for_product(product_id=3852, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:40 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:40 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:41 - INFO - create_for_product(product_id=3852, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:41 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:41 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:41 - INFO - create_for_product(product_id=3852, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:42 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:42 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:42 - INFO - create_for_product(product_id=3852, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:43 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:43 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:43 - INFO - create_for_product(product_id=3852, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:43 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:44 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:44 - INFO - create_for_product(product_id=3852, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:44 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:45 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:45 - INFO - create_for_product(product_id=3852, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:45 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:46 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:46 - INFO - create_for_product(product_id=3852, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:46 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:46 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:47 - INFO - create_for_product(product_id=3852, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:47 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:47 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:48 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:48 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:48 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:49 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:49 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:49 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:50 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:50 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:50 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:51 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:51 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:51 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:52 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:52 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:52 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:53 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:53 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:53 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:53 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:54 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:54 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:54 - INFO - create_for_product(product_id=3852, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:55 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:55 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:55 - INFO - create_for_product(product_id=3852, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:55 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:56 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:56 - INFO - create_for_product(product_id=3852, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:56 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:57 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:57 - INFO - create_for_product(product_id=3852, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:57 - INFO - create_for_product(product_id=3852, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3852 HTTP/1.1" 200 None +2025-03-08 17:23:57 - INFO - create_for_product(product_id=3852, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3852?force=True HTTP/1.1" 200 None +2025-03-08 17:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:25:42 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:42 - INFO - create_for_product(product_id=3853, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:43 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:44 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:44 - INFO - create_for_product(product_id=3853, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:45 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:45 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:45 - INFO - create_for_product(product_id=3853, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:46 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:46 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:46 - INFO - create_for_product(product_id=3853, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:47 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:47 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:48 - INFO - create_for_product(product_id=3853, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:48 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:49 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:49 - INFO - create_for_product(product_id=3853, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:50 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:50 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:50 - INFO - create_for_product(product_id=3853, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:51 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:51 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:52 - INFO - create_for_product(product_id=3853, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:52 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:53 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:53 - INFO - create_for_product(product_id=3853, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:54 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:54 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:54 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:55 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:55 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:56 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:56 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:56 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:57 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:57 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:58 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:58 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:59 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:59 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:00 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:00 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:01 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:01 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:02 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:02 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:02 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:03 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:03 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:03 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:04 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:04 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:05 - INFO - create_for_product(product_id=3853, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:05 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:06 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:06 - INFO - create_for_product(product_id=3853, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:07 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:07 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:07 - INFO - create_for_product(product_id=3853, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:08 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:08 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:08 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:09 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:09 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:10 - INFO - create_for_product(product_id=3853, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:10 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:11 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 17:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:11 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 17:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:12 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 17:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:12 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 17:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:12 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 17:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:13 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 17:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:13 - INFO - create_for_product(product_id=3853, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 17:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:13 - INFO - create_for_product(product_id=3853, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-08 17:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:14 - INFO - create_for_product(product_id=3853, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 17:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3853 HTTP/1.1" 400 None +2025-03-08 17:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3853 HTTP/1.1" 200 None +2025-03-08 17:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3853?force=True HTTP/1.1" 200 None +2025-03-08 17:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:27:59 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:27:59 - INFO - create_for_product(product_id=3854, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:00 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:01 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:01 - INFO - create_for_product(product_id=3854, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:02 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:02 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:02 - INFO - create_for_product(product_id=3854, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:03 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:03 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:03 - INFO - create_for_product(product_id=3854, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:04 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:04 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:05 - INFO - create_for_product(product_id=3854, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:05 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:06 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:06 - INFO - create_for_product(product_id=3854, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:13 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:13 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:13 - INFO - create_for_product(product_id=3854, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:15 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:16 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:16 - INFO - create_for_product(product_id=3854, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:16 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:17 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:17 - INFO - create_for_product(product_id=3854, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:18 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:18 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:19 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:21 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:22 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:23 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:23 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:24 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:24 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:26 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:26 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:26 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:27 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:28 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:29 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:29 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:30 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:30 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:31 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:32 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:32 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:33 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:33 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:33 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:34 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:34 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:35 - INFO - create_for_product(product_id=3854, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:36 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:36 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:36 - INFO - create_for_product(product_id=3854, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:37 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:38 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:38 - INFO - create_for_product(product_id=3854, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:39 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:39 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:40 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:40 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:41 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:41 - INFO - create_for_product(product_id=3854, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:42 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:42 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 17:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:43 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 17:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:44 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 17:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:44 - INFO - create_for_product(product_id=3854, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 17:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:44 - INFO - create_for_product(product_id=3854, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 17:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3854 HTTP/1.1" 200 None +2025-03-08 17:28:45 - INFO - create_for_product(product_id=3854, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 17:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3854?force=True HTTP/1.1" 200 None +2025-03-08 17:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:29:48 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:49 - INFO - create_for_product(product_id=3855, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:50 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:50 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:51 - INFO - create_for_product(product_id=3855, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:51 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:57 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:58 - INFO - create_for_product(product_id=3855, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:58 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:59 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:29:59 - INFO - create_for_product(product_id=3855, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:01 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:01 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:02 - INFO - create_for_product(product_id=3855, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:03 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:03 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:04 - INFO - create_for_product(product_id=3855, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:07 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:09 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:09 - INFO - create_for_product(product_id=3855, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:10 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:11 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:11 - INFO - create_for_product(product_id=3855, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:12 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:12 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:13 - INFO - create_for_product(product_id=3855, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:13 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:14 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:15 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:15 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:16 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:16 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:17 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:17 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:17 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:18 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:19 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:19 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:20 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:20 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:21 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:22 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:23 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:23 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:24 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:24 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:25 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:26 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:26 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:27 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:27 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:28 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:28 - INFO - create_for_product(product_id=3855, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:29 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:30 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:30 - INFO - create_for_product(product_id=3855, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:31 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:31 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:32 - INFO - create_for_product(product_id=3855, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:32 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:33 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:33 - INFO - create_for_product(product_id=3855, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:34 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:34 - INFO - create_for_product(product_id=3855, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:34 - INFO - create_for_product(product_id=3855, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3855 HTTP/1.1" 200 None +2025-03-08 17:30:35 - INFO - create_for_product(product_id=3855, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3855?force=True HTTP/1.1" 200 None +2025-03-08 17:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:35:06 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:07 - INFO - create_for_product(product_id=3856, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:07 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:08 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:09 - INFO - create_for_product(product_id=3856, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:09 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:10 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:11 - INFO - create_for_product(product_id=3856, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:11 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:12 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:13 - INFO - create_for_product(product_id=3856, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:13 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:14 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:15 - INFO - create_for_product(product_id=3856, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:15 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:16 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:17 - INFO - create_for_product(product_id=3856, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:19 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:20 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:21 - INFO - create_for_product(product_id=3856, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:21 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:24 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:25 - INFO - create_for_product(product_id=3856, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:26 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:27 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:27 - INFO - create_for_product(product_id=3856, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:28 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:29 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:29 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:30 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:31 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:31 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:32 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:33 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:34 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:35 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:36 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:36 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:37 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:38 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:39 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:39 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:40 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:41 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:42 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:43 - INFO - create_for_product(product_id=3856, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:43 - INFO - create_for_product(product_id=3856, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3856 HTTP/1.1" 200 None +2025-03-08 17:35:44 - INFO - create_for_product(product_id=3856, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3856?force=True HTTP/1.1" 200 None +2025-03-08 17:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:37:35 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:36 - INFO - create_for_product(product_id=3857, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:36 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:37 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:38 - INFO - create_for_product(product_id=3857, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:38 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:39 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:39 - INFO - create_for_product(product_id=3857, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:40 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:41 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:42 - INFO - create_for_product(product_id=3857, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:43 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:44 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:45 - INFO - create_for_product(product_id=3857, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:46 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:47 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:50 - INFO - create_for_product(product_id=3857, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:55 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:55 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-08 17:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:56 - INFO - create_for_product(product_id=3857, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-08 17:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:57 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-08 17:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:58 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-08 17:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:58 - INFO - create_for_product(product_id=3857, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-08 17:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:59 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-08 17:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:37:59 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-08 17:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:00 - INFO - create_for_product(product_id=3857, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-08 17:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:01 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-08 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:02 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-08 17:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:05 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-08 17:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:06 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-08 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:07 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-08 17:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:08 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-08 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:09 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-08 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:09 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-08 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:10 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-08 17:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:11 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-08 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:12 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-08 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:12 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-08 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:13 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-08 17:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:14 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-08 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:15 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-08 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:15 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-08 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:16 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-08 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:17 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-08 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:18 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-08 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:18 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-08 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:19 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-08 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:20 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-08 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:21 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-08 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:21 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-08 17:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:23 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-08 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:23 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-08 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:24 - INFO - create_for_product(product_id=3857, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-08 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:25 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-08 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:25 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-08 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:26 - INFO - create_for_product(product_id=3857, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-08 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:27 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-08 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:28 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-08 17:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:28 - INFO - create_for_product(product_id=3857, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-08 17:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:29 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-08 17:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:30 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-08 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:30 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-08 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:31 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-08 17:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:32 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-08 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:32 - INFO - create_for_product(product_id=3857, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-08 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:33 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-08 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:34 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-08 17:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:35 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-08 17:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:35 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-08 17:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:36 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-08 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:37 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-08 17:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:38 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-08 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:38 - INFO - create_for_product(product_id=3857, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-08 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:39 - INFO - create_for_product(product_id=3857, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-08 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:40 - INFO - create_for_product(product_id=3857, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-08 17:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3857 HTTP/1.1" 200 None +2025-03-08 17:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3857?force=True HTTP/1.1" 200 None +2025-03-08 17:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3858 HTTP/1.1" 200 None +2025-03-08 17:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:19 - INFO - create_for_product(product_id=3858, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3858 HTTP/1.1" 200 None +2025-03-08 17:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3858?force=True HTTP/1.1" 200 None +2025-03-08 17:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:41:01 - INFO - create_for_product(product_id=3859, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:02 - INFO - create_for_product(product_id=3859, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-08 17:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:02 - INFO - create_for_product(product_id=3859, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-08 17:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:03 - INFO - create_for_product(product_id=3859, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-08 17:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:04 - INFO - create_for_product(product_id=3859, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-08 17:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:04 - INFO - create_for_product(product_id=3859, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-08 17:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:05 - INFO - create_for_product(product_id=3859, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-08 17:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:06 - INFO - create_for_product(product_id=3859, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-08 17:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:06 - INFO - create_for_product(product_id=3859, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-08 17:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:07 - INFO - create_for_product(product_id=3859, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-08 17:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:08 - INFO - create_for_product(product_id=3859, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-08 17:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:08 - INFO - create_for_product(product_id=3859, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-08 17:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:09 - INFO - create_for_product(product_id=3859, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-08 17:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:10 - INFO - create_for_product(product_id=3859, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-08 17:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:10 - INFO - create_for_product(product_id=3859, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-08 17:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:11 - INFO - create_for_product(product_id=3859, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-08 17:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:11 - INFO - create_for_product(product_id=3859, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-08 17:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:12 - INFO - create_for_product(product_id=3859, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-08 17:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3859 HTTP/1.1" 200 None +2025-03-08 17:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3859?force=True HTTP/1.1" 200 None +2025-03-08 17:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-08 17:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-08 17:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-08 17:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-08 17:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3860 HTTP/1.1" 200 None +2025-03-08 17:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-08 17:44:53 - INFO - create_for_product(product_id=3860, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-08 17:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-08 17:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3860 HTTP/1.1" 200 None +2025-03-08 17:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3860?force=True HTTP/1.1" 200 None +2025-03-11 09:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 09:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 09:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 09:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 09:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:46:04 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 09:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:06 - INFO - create_for_product(product_id=3861, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 09:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:08 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 09:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:10 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 09:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:12 - INFO - create_for_product(product_id=3861, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 09:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:14 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 09:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:16 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 09:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:19 - INFO - create_for_product(product_id=3861, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 09:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:21 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 09:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:23 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 09:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:25 - INFO - create_for_product(product_id=3861, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 09:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:27 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 09:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:29 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 09:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:31 - INFO - create_for_product(product_id=3861, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-11 09:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:33 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-11 09:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:35 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-11 09:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:37 - INFO - create_for_product(product_id=3861, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-11 09:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:40 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-11 09:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:43 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-11 09:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:45 - INFO - create_for_product(product_id=3861, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-11 09:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:47 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-11 09:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:49 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-11 09:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:51 - INFO - create_for_product(product_id=3861, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-11 09:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:53 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-11 09:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:55 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-11 09:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:57 - INFO - create_for_product(product_id=3861, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-11 09:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:46:59 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-11 09:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:01 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-11 09:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:03 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-11 09:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:06 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-11 09:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:08 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-11 09:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:10 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-11 09:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:12 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-11 09:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:14 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-11 09:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:16 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-11 09:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:19 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-11 09:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:21 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-11 09:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:24 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-11 09:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:26 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-11 09:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:28 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-11 09:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:30 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-11 09:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:33 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-11 09:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:35 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-11 09:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:37 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-11 09:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:39 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-11 09:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:41 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-11 09:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:44 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-11 09:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:46 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-11 09:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:48 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-11 09:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:50 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-11 09:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:52 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-11 09:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:54 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-11 09:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:56 - INFO - create_for_product(product_id=3861, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-11 09:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:58 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-11 09:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:00 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-11 09:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:02 - INFO - create_for_product(product_id=3861, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-11 09:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:04 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-11 09:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:06 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-11 09:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:08 - INFO - create_for_product(product_id=3861, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-11 09:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:11 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-11 09:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:13 - INFO - create_for_product(product_id=3861, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-11 09:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:15 - INFO - create_for_product(product_id=3861, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-11 09:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3861 HTTP/1.1" 200 None +2025-03-11 09:48:17 - INFO - create_for_product(product_id=3861, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-11 09:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3861?force=True HTTP/1.1" 200 None +2025-03-11 09:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 09:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 09:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 09:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 09:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:56:53 - INFO - create_for_product(product_id=3862, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 09:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:56:55 - INFO - create_for_product(product_id=3862, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 09:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:56:58 - INFO - create_for_product(product_id=3862, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 09:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:57:00 - INFO - create_for_product(product_id=3862, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 09:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3862 HTTP/1.1" 200 None +2025-03-11 09:57:02 - INFO - create_for_product(product_id=3862, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 09:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3862?force=True HTTP/1.1" 200 None +2025-03-11 09:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 09:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 09:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 09:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 09:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 09:59:10 - INFO - create_for_product(product_id=3863, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 09:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:12 - INFO - create_for_product(product_id=3863, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 09:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:15 - INFO - create_for_product(product_id=3863, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 09:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:17 - INFO - create_for_product(product_id=3863, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 09:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:19 - INFO - create_for_product(product_id=3863, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 09:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:21 - INFO - create_for_product(product_id=3863, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 09:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:24 - INFO - create_for_product(product_id=3863, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 09:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:26 - INFO - create_for_product(product_id=3863, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 09:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 09:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3863 HTTP/1.1" 200 None +2025-03-11 09:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3863?force=True HTTP/1.1" 200 None +2025-03-11 10:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:01:07 - INFO - create_for_product(product_id=3864, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:09 - INFO - create_for_product(product_id=3864, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:12 - INFO - create_for_product(product_id=3864, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:14 - INFO - create_for_product(product_id=3864, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:16 - INFO - create_for_product(product_id=3864, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:18 - INFO - create_for_product(product_id=3864, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:21 - INFO - create_for_product(product_id=3864, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 10:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3864 HTTP/1.1" 200 None +2025-03-11 10:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3864?force=True HTTP/1.1" 200 None +2025-03-11 10:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:06:14 - INFO - create_for_product(product_id=3865, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:16 - INFO - create_for_product(product_id=3865, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:18 - INFO - create_for_product(product_id=3865, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:20 - INFO - create_for_product(product_id=3865, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:22 - INFO - create_for_product(product_id=3865, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:25 - INFO - create_for_product(product_id=3865, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:27 - INFO - create_for_product(product_id=3865, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:29 - INFO - create_for_product(product_id=3865, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 10:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:31 - INFO - create_for_product(product_id=3865, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 10:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:33 - INFO - create_for_product(product_id=3865, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 10:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:35 - INFO - create_for_product(product_id=3865, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 10:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3865 HTTP/1.1" 200 None +2025-03-11 10:06:37 - INFO - create_for_product(product_id=3865, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 10:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3865?force=True HTTP/1.1" 200 None +2025-03-11 10:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:08:48 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:50 - INFO - create_for_product(product_id=3866, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:52 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:54 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:56 - INFO - create_for_product(product_id=3866, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:58 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:00 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 10:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:02 - INFO - create_for_product(product_id=3866, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 10:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:04 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 10:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:06 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 10:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:08 - INFO - create_for_product(product_id=3866, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 10:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:10 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 10:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:12 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 10:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:15 - INFO - create_for_product(product_id=3866, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-11 10:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:17 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-11 10:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:19 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-11 10:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:21 - INFO - create_for_product(product_id=3866, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-11 10:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:24 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-11 10:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:26 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-11 10:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:28 - INFO - create_for_product(product_id=3866, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-11 10:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:31 - INFO - create_for_product(product_id=3866, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-11 10:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:33 - INFO - create_for_product(product_id=3866, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-11 10:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3866 HTTP/1.1" 200 None +2025-03-11 10:09:35 - INFO - create_for_product(product_id=3866, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-11 10:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3866?force=True HTTP/1.1" 200 None +2025-03-11 10:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:13:59 - INFO - create_for_product(product_id=3867, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:01 - INFO - create_for_product(product_id=3867, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:03 - INFO - create_for_product(product_id=3867, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:05 - INFO - create_for_product(product_id=3867, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:07 - INFO - create_for_product(product_id=3867, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:09 - INFO - create_for_product(product_id=3867, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3867 HTTP/1.1" 200 None +2025-03-11 10:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3867?force=True HTTP/1.1" 200 None +2025-03-11 10:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:50:51 - INFO - create_for_product(product_id=3868, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:53 - INFO - create_for_product(product_id=3868, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:55 - INFO - create_for_product(product_id=3868, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:57 - INFO - create_for_product(product_id=3868, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:50:59 - INFO - create_for_product(product_id=3868, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:01 - INFO - create_for_product(product_id=3868, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:03 - INFO - create_for_product(product_id=3868, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 10:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:05 - INFO - create_for_product(product_id=3868, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 10:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:07 - INFO - create_for_product(product_id=3868, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 10:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:09 - INFO - create_for_product(product_id=3868, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 10:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:11 - INFO - create_for_product(product_id=3868, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 10:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:13 - INFO - create_for_product(product_id=3868, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 10:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:15 - INFO - create_for_product(product_id=3868, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 10:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:17 - INFO - create_for_product(product_id=3868, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-11 10:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:19 - INFO - create_for_product(product_id=3868, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-11 10:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:21 - INFO - create_for_product(product_id=3868, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-11 10:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3868 HTTP/1.1" 200 None +2025-03-11 10:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3868?force=True HTTP/1.1" 200 None +2025-03-11 10:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3869 HTTP/1.1" 200 None +2025-03-11 10:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:54:47 - INFO - create_for_product(product_id=3869, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3869 HTTP/1.1" 200 None +2025-03-11 10:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3869?force=True HTTP/1.1" 200 None +2025-03-11 10:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:55:43 - INFO - create_for_product(product_id=3870, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:46 - INFO - create_for_product(product_id=3870, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:47 - INFO - create_for_product(product_id=3870, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:49 - INFO - create_for_product(product_id=3870, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:51 - INFO - create_for_product(product_id=3870, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:53 - INFO - create_for_product(product_id=3870, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:55 - INFO - create_for_product(product_id=3870, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 10:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:57 - INFO - create_for_product(product_id=3870, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 10:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:55:59 - INFO - create_for_product(product_id=3870, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 10:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:02 - INFO - create_for_product(product_id=3870, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 10:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:03 - INFO - create_for_product(product_id=3870, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 10:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:05 - INFO - create_for_product(product_id=3870, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 10:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:08 - INFO - create_for_product(product_id=3870, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 10:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:09 - INFO - create_for_product(product_id=3870, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-11 10:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:12 - INFO - create_for_product(product_id=3870, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-11 10:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3870 HTTP/1.1" 200 None +2025-03-11 10:56:14 - INFO - create_for_product(product_id=3870, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-11 10:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3870?force=True HTTP/1.1" 200 None +2025-03-11 10:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:57:55 - INFO - create_for_product(product_id=3871, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:57:57 - INFO - create_for_product(product_id=3871, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 10:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:57:59 - INFO - create_for_product(product_id=3871, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 10:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:01 - INFO - create_for_product(product_id=3871, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 10:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:03 - INFO - create_for_product(product_id=3871, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 10:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:05 - INFO - create_for_product(product_id=3871, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 10:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:07 - INFO - create_for_product(product_id=3871, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 10:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:09 - INFO - create_for_product(product_id=3871, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 10:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:11 - INFO - create_for_product(product_id=3871, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 10:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:13 - INFO - create_for_product(product_id=3871, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 10:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:15 - INFO - create_for_product(product_id=3871, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 10:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:17 - INFO - create_for_product(product_id=3871, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 10:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:19 - INFO - create_for_product(product_id=3871, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 10:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:21 - INFO - create_for_product(product_id=3871, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-11 10:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:24 - INFO - create_for_product(product_id=3871, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-11 10:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3871 HTTP/1.1" 200 None +2025-03-11 10:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3871?force=True HTTP/1.1" 200 None +2025-03-11 10:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 10:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 10:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 10:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 10:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 10:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 10:59:58 - INFO - create_for_product(product_id=3872, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 10:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 10:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 10:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:00 - INFO - create_for_product(product_id=3872, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:03 - INFO - create_for_product(product_id=3872, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:05 - INFO - create_for_product(product_id=3872, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:07 - INFO - create_for_product(product_id=3872, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:09 - INFO - create_for_product(product_id=3872, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:11 - INFO - create_for_product(product_id=3872, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:13 - INFO - create_for_product(product_id=3872, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:15 - INFO - create_for_product(product_id=3872, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 11:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:17 - INFO - create_for_product(product_id=3872, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 11:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:19 - INFO - create_for_product(product_id=3872, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 11:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:21 - INFO - create_for_product(product_id=3872, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 11:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:24 - INFO - create_for_product(product_id=3872, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 11:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:26 - INFO - create_for_product(product_id=3872, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-11 11:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:28 - INFO - create_for_product(product_id=3872, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-11 11:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:30 - INFO - create_for_product(product_id=3872, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-11 11:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:32 - INFO - create_for_product(product_id=3872, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-11 11:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3872 HTTP/1.1" 200 None +2025-03-11 11:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3872?force=True HTTP/1.1" 200 None +2025-03-11 11:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:07:33 - INFO - create_for_product(product_id=3873, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:35 - INFO - create_for_product(product_id=3873, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:37 - INFO - create_for_product(product_id=3873, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:39 - INFO - create_for_product(product_id=3873, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:41 - INFO - create_for_product(product_id=3873, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:43 - INFO - create_for_product(product_id=3873, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:45 - INFO - create_for_product(product_id=3873, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:47 - INFO - create_for_product(product_id=3873, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:49 - INFO - create_for_product(product_id=3873, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 11:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:51 - INFO - create_for_product(product_id=3873, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 11:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:53 - INFO - create_for_product(product_id=3873, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 11:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:55 - INFO - create_for_product(product_id=3873, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 11:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:57 - INFO - create_for_product(product_id=3873, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 11:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3873 HTTP/1.1" 200 None +2025-03-11 11:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3873?force=True HTTP/1.1" 200 None +2025-03-11 11:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3874 HTTP/1.1" 200 None +2025-03-11 11:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:08:45 - INFO - create_for_product(product_id=3874, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3874 HTTP/1.1" 200 None +2025-03-11 11:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3874?force=True HTTP/1.1" 200 None +2025-03-11 11:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-11 11:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3875 HTTP/1.1" 200 None +2025-03-11 11:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:09:52 - INFO - create_for_product(product_id=3875, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3875 HTTP/1.1" 200 None +2025-03-11 11:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3875?force=True HTTP/1.1" 200 None +2025-03-11 11:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:11:36 - INFO - create_for_product(product_id=3876, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:38 - INFO - create_for_product(product_id=3876, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:40 - INFO - create_for_product(product_id=3876, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:42 - INFO - create_for_product(product_id=3876, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:44 - INFO - create_for_product(product_id=3876, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3876 HTTP/1.1" 200 None +2025-03-11 11:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3876?force=True HTTP/1.1" 200 None +2025-03-11 11:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3877 HTTP/1.1" 200 None +2025-03-11 11:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:13:13 - INFO - create_for_product(product_id=3877, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3877 HTTP/1.1" 200 None +2025-03-11 11:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3877 HTTP/1.1" 200 None +2025-03-11 11:13:15 - INFO - create_for_product(product_id=3877, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3877 HTTP/1.1" 200 None +2025-03-11 11:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3877 HTTP/1.1" 200 None +2025-03-11 11:13:17 - INFO - create_for_product(product_id=3877, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3877?force=True HTTP/1.1" 200 None +2025-03-11 11:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3878 HTTP/1.1" 200 None +2025-03-11 11:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:21:43 - INFO - create_for_product(product_id=3878, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3878 HTTP/1.1" 200 None +2025-03-11 11:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3878 HTTP/1.1" 200 None +2025-03-11 11:21:45 - INFO - create_for_product(product_id=3878, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3878?force=True HTTP/1.1" 200 None +2025-03-11 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:26:26 - INFO - create_for_product(product_id=3879, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:28 - INFO - create_for_product(product_id=3879, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:30 - INFO - create_for_product(product_id=3879, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:32 - INFO - create_for_product(product_id=3879, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:34 - INFO - create_for_product(product_id=3879, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3879 HTTP/1.1" 200 None +2025-03-11 11:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3879?force=True HTTP/1.1" 200 None +2025-03-11 11:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:29:08 - INFO - create_for_product(product_id=3880, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:10 - INFO - create_for_product(product_id=3880, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:13 - INFO - create_for_product(product_id=3880, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:15 - INFO - create_for_product(product_id=3880, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:17 - INFO - create_for_product(product_id=3880, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3880 HTTP/1.1" 200 None +2025-03-11 11:29:19 - INFO - create_for_product(product_id=3880, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3880?force=True HTTP/1.1" 200 None +2025-03-11 11:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:32:26 - INFO - create_for_product(product_id=3881, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:29 - INFO - create_for_product(product_id=3881, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:31 - INFO - create_for_product(product_id=3881, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:33 - INFO - create_for_product(product_id=3881, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3881 HTTP/1.1" 200 None +2025-03-11 11:32:36 - INFO - create_for_product(product_id=3881, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3881?force=True HTTP/1.1" 200 None +2025-03-11 11:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:35:18 - INFO - create_for_product(product_id=3882, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:20 - INFO - create_for_product(product_id=3882, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:23 - INFO - create_for_product(product_id=3882, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:25 - INFO - create_for_product(product_id=3882, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:27 - INFO - create_for_product(product_id=3882, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3882 HTTP/1.1" 200 None +2025-03-11 11:35:29 - INFO - create_for_product(product_id=3882, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3882?force=True HTTP/1.1" 200 None +2025-03-11 11:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:37:54 - INFO - create_for_product(product_id=3883, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:37:56 - INFO - create_for_product(product_id=3883, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:37:58 - INFO - create_for_product(product_id=3883, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:00 - INFO - create_for_product(product_id=3883, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:02 - INFO - create_for_product(product_id=3883, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:05 - INFO - create_for_product(product_id=3883, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:07 - INFO - create_for_product(product_id=3883, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:09 - INFO - create_for_product(product_id=3883, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:11 - INFO - create_for_product(product_id=3883, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 11:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:13 - INFO - create_for_product(product_id=3883, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 11:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:15 - INFO - create_for_product(product_id=3883, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 11:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:17 - INFO - create_for_product(product_id=3883, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 11:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3883 HTTP/1.1" 200 None +2025-03-11 11:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3883?force=True HTTP/1.1" 200 None +2025-03-11 11:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:41:43 - INFO - create_for_product(product_id=3884, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:45 - INFO - create_for_product(product_id=3884, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:47 - INFO - create_for_product(product_id=3884, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:49 - INFO - create_for_product(product_id=3884, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3884 HTTP/1.1" 200 None +2025-03-11 11:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3884?force=True HTTP/1.1" 200 None +2025-03-11 11:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:42:59 - INFO - create_for_product(product_id=3885, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:01 - INFO - create_for_product(product_id=3885, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:03 - INFO - create_for_product(product_id=3885, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:05 - INFO - create_for_product(product_id=3885, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:07 - INFO - create_for_product(product_id=3885, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:09 - INFO - create_for_product(product_id=3885, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:11 - INFO - create_for_product(product_id=3885, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3885 HTTP/1.1" 200 None +2025-03-11 11:43:13 - INFO - create_for_product(product_id=3885, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3885?force=True HTTP/1.1" 200 None +2025-03-11 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:47:00 - INFO - create_for_product(product_id=3886, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:02 - INFO - create_for_product(product_id=3886, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:04 - INFO - create_for_product(product_id=3886, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:06 - INFO - create_for_product(product_id=3886, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:08 - INFO - create_for_product(product_id=3886, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:10 - INFO - create_for_product(product_id=3886, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:12 - INFO - create_for_product(product_id=3886, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:14 - INFO - create_for_product(product_id=3886, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3886 HTTP/1.1" 200 None +2025-03-11 11:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3886?force=True HTTP/1.1" 200 None +2025-03-11 11:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:49:28 - INFO - create_for_product(product_id=3887, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690168.3007548 HTTP/1.1" 200 None +2025-03-11 11:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:30 - INFO - create_for_product(product_id=3887, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690170.272426 HTTP/1.1" 200 None +2025-03-11 11:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:32 - INFO - create_for_product(product_id=3887, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690172.1334007 HTTP/1.1" 200 None +2025-03-11 11:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:34 - INFO - create_for_product(product_id=3887, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690174.3748662 HTTP/1.1" 200 None +2025-03-11 11:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:36 - INFO - create_for_product(product_id=3887, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690176.406812 HTTP/1.1" 200 None +2025-03-11 11:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:38 - INFO - create_for_product(product_id=3887, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690178.280067 HTTP/1.1" 200 None +2025-03-11 11:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:40 - INFO - create_for_product(product_id=3887, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690180.3168538 HTTP/1.1" 200 None +2025-03-11 11:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:42 - INFO - create_for_product(product_id=3887, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690182.4027047 HTTP/1.1" 200 None +2025-03-11 11:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:44 - INFO - create_for_product(product_id=3887, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 11:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690184.244534 HTTP/1.1" 200 None +2025-03-11 11:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:46 - INFO - create_for_product(product_id=3887, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 11:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3887?_=1741690186.225143 HTTP/1.1" 200 None +2025-03-11 11:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3887 HTTP/1.1" 200 None +2025-03-11 11:49:48 - INFO - create_for_product(product_id=3887, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 11:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3887?force=True HTTP/1.1" 200 None +2025-03-11 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3888 HTTP/1.1" 200 None +2025-03-11 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:52:55 - INFO - create_for_product(product_id=3888, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3888?force=True HTTP/1.1" 200 None +2025-03-11 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 11:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 11:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 11:55:59 - INFO - create_for_product(product_id=3889, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 11:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:01 - INFO - create_for_product(product_id=3889, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:03 - INFO - create_for_product(product_id=3889, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:05 - INFO - create_for_product(product_id=3889, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:07 - INFO - create_for_product(product_id=3889, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:10 - INFO - create_for_product(product_id=3889, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:12 - INFO - create_for_product(product_id=3889, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:14 - INFO - create_for_product(product_id=3889, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:16 - INFO - create_for_product(product_id=3889, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:18 - INFO - create_for_product(product_id=3889, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 11:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:20 - INFO - create_for_product(product_id=3889, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3889?nocache=1 HTTP/1.1" 200 None +2025-03-11 11:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 11:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3889 HTTP/1.1" 200 None +2025-03-11 11:56:22 - INFO - create_for_product(product_id=3889, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 11:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3889?force=True HTTP/1.1" 200 None +2025-03-11 12:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 12:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3890 HTTP/1.1" 200 None +2025-03-11 12:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3890?force=True HTTP/1.1" 200 None +2025-03-11 12:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:03:34 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 12:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:36 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 12:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:38 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 12:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:40 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:42 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:45 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:47 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:49 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:51 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 12:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:55 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-11 12:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:57 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-11 12:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:03:59 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-11 12:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-11 12:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:05:15 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 12:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:17 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 12:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:19 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 12:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:20 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 12:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:21 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 12:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:24 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 12:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:26 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 12:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838?nocache=1 HTTP/1.1" 200 None +2025-03-11 12:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:05:28 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 12:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-11 12:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 12:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:11:06 - INFO - create_for_product(product_id=3891, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 12:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:08 - INFO - create_for_product(product_id=3891, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 12:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:10 - INFO - create_for_product(product_id=3891, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 12:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:12 - INFO - create_for_product(product_id=3891, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 12:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:14 - INFO - create_for_product(product_id=3891, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 12:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:16 - INFO - create_for_product(product_id=3891, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 12:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:18 - INFO - create_for_product(product_id=3891, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 12:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:20 - INFO - create_for_product(product_id=3891, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 12:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:23 - INFO - create_for_product(product_id=3891, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 12:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3891 HTTP/1.1" 200 None +2025-03-11 12:11:25 - INFO - create_for_product(product_id=3891, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 12:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3891?force=True HTTP/1.1" 200 None +2025-03-11 12:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-11 12:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:13:42 - INFO - create_for_product(product_id=3892, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 12:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:44 - INFO - create_for_product(product_id=3892, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 12:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:46 - INFO - create_for_product(product_id=3892, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 12:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3892 HTTP/1.1" 200 None +2025-03-11 12:13:48 - INFO - create_for_product(product_id=3892, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 12:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3892?force=True HTTP/1.1" 200 None +2025-03-11 12:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 400 None +2025-03-11 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-11 12:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-11 12:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-11 12:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-11 12:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-11 12:16:27 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-11 12:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:29 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-11 12:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:31 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-11 12:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:33 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-11 12:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:35 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-11 12:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:37 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-11 12:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:39 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-11 12:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:41 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-11 12:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:43 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-11 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-11 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-11 12:16:45 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-11 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 09:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 09:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 09:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:30:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:54 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 09:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:55 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 09:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:55 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:56 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 09:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:57 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 09:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:58 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:58 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-17 09:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:59 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 09:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:00 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:01 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-17 09:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:01 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 09:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:02 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:03 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-17 09:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:03 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 09:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:04 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:05 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-17 09:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:05 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 09:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:06 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:07 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-17 09:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:08 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 09:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:08 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:09 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-17 09:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:10 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 09:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:11 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:11 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-17 09:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:12 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-17 09:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:13 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-17 09:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:13 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-17 09:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:14 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-17 09:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:15 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-17 09:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:16 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-17 09:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:16 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-17 09:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:17 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-17 09:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:18 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:19 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-17 09:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:19 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-17 09:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:20 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:21 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-17 09:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:22 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-17 09:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:23 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:23 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-17 09:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:24 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-17 09:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:25 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-17 09:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:25 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-17 09:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:26 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-17 09:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:27 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-17 09:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:27 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-17 09:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:28 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-17 09:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:31:29 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 09:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 09:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 09:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 09:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 09:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 09:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:35:51 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:52 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 09:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:53 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 09:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:54 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 09:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:55 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 09:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:55 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:56 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-17 09:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:57 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 09:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:58 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:58 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-17 09:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:59 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 09:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:00 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:00 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-17 09:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:01 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 09:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:02 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:36:03 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-17 09:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 09:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 09:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 09:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 09:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 09:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 09:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:46:32 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:33 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 09:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:34 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 09:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:34 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:35 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 09:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:36 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 09:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:36 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:46:37 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-17 09:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 09:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 09:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 09:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 09:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 09:50:22 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:23 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:23 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:24 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:25 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:25 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:26 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:27 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:28 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:28 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:29 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:30 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:30 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:31 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:32 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:32 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:33 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:34 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:35 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:35 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:36 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:37 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:37 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:38 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:39 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 09:50:40 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:40 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:41 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:42 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:43 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:43 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:44 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:45 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:45 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:46 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:47 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:47 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:48 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:49 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:49 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:50 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:51 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:52 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:52 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:53 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:54 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:54 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:55 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:56 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:56 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:57 - INFO - create_for_product(product_id=3837, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:58 - INFO - create_for_product(product_id=3837, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:58 - INFO - create_for_product(product_id=3837, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:59 - INFO - create_for_product(product_id=3837, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:00 - INFO - create_for_product(product_id=3837, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:01 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:01 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:02 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:02 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:03 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:04 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:05 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:05 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:06 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:07 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:08 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:08 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:09 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:10 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:11 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:11 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:12 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:13 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:14 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:14 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:15 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:16 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:16 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:17 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:18 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:18 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:19 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:20 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:21 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:21 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:22 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:23 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:24 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:25 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:25 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:26 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:27 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:28 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:28 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:29 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:30 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:30 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:31 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:32 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:34 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 09:51:36 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:37 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:38 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:39 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:40 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:42 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:44 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:45 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:46 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:46 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:47 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:48 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:49 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:49 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:50 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:51 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:52 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:52 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:53 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:54 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:55 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:55 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:56 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:57 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:57 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:58 - INFO - create_for_product(product_id=3836, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:59 - INFO - create_for_product(product_id=3836, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:51:59 - INFO - create_for_product(product_id=3836, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:00 - INFO - create_for_product(product_id=3836, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:01 - INFO - create_for_product(product_id=3836, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:02 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:03 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:04 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:05 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:05 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:06 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:07 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:07 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:08 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:09 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:10 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:10 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:11 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:12 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:13 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:14 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:15 - INFO - create_for_product(product_id=3836, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:16 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:16 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:17 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:18 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:19 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:20 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:21 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:22 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:23 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:24 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:25 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:26 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:28 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:28 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:29 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:30 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:31 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:32 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:33 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:33 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:34 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:35 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:35 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:36 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:37 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:38 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:38 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:39 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 09:52:40 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:41 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:42 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:43 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:44 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:45 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:46 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:47 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:47 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:48 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:49 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:50 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:51 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:52 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:52 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:53 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:54 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:55 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:56 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:56 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:57 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:58 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:59 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:52:59 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:00 - INFO - create_for_product(product_id=3835, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:01 - INFO - create_for_product(product_id=3835, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:02 - INFO - create_for_product(product_id=3835, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:03 - INFO - create_for_product(product_id=3835, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:04 - INFO - create_for_product(product_id=3835, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:05 - INFO - create_for_product(product_id=3835, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:06 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:07 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:08 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:09 - INFO - create_for_product(product_id=3835, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:10 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:12 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:13 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:14 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:16 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:16 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:18 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:19 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:20 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:22 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:23 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:25 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:27 - INFO - create_for_product(product_id=3835, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:29 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:30 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:31 - INFO - create_for_product(product_id=3835, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:33 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:34 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:36 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:37 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:38 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:40 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:40 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:41 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:43 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:44 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:45 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:46 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:47 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:48 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:49 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:50 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:50 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:52 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:54 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:55 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:56 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:57 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:59 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:54:00 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:54:01 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 09:54:02 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:03 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:04 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:05 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:06 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:07 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:07 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:08 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:09 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:10 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:11 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:11 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:12 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:13 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:14 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:15 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:16 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:17 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:17 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:18 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:19 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:20 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:21 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:21 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:23 - INFO - create_for_product(product_id=3834, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:23 - INFO - create_for_product(product_id=3834, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:24 - INFO - create_for_product(product_id=3834, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:25 - INFO - create_for_product(product_id=3834, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:26 - INFO - create_for_product(product_id=3834, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:26 - INFO - create_for_product(product_id=3834, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:27 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:28 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:29 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:30 - INFO - create_for_product(product_id=3834, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:30 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:31 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:32 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:33 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:34 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:34 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:35 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:36 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:37 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:38 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:38 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:39 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:40 - INFO - create_for_product(product_id=3834, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:41 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:42 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:43 - INFO - create_for_product(product_id=3834, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:43 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:44 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:45 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:46 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:47 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:48 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:48 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:49 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:50 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:51 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:52 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:52 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:53 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:54 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:55 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:55 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:56 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:57 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:01 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:02 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:03 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:04 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:05 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:06 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:07 - INFO - create_for_product(product_id=3834, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3834 HTTP/1.1" 200 None +2025-03-17 09:55:08 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:09 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:11 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:12 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:13 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:14 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:15 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:16 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:17 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:18 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:19 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:20 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:21 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:23 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:24 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:25 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:26 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:27 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:28 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:28 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:29 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:30 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:31 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:32 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:33 - INFO - create_for_product(product_id=3833, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:34 - INFO - create_for_product(product_id=3833, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:35 - INFO - create_for_product(product_id=3833, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:35 - INFO - create_for_product(product_id=3833, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:36 - INFO - create_for_product(product_id=3833, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:37 - INFO - create_for_product(product_id=3833, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:38 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:39 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:40 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:41 - INFO - create_for_product(product_id=3833, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:41 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:42 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:43 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:44 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:45 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:46 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:47 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:48 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:49 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:50 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:51 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:51 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:52 - INFO - create_for_product(product_id=3833, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:53 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:54 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:55 - INFO - create_for_product(product_id=3833, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:55 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:57 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:58 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:59 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:00 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:01 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:02 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:03 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:04 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:05 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:06 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:07 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:08 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:09 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:10 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:11 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:12 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:13 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:14 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:15 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:16 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:16 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:17 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:18 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:19 - INFO - create_for_product(product_id=3833, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3833 HTTP/1.1" 200 None +2025-03-17 09:56:20 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:21 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:22 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:23 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:24 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:25 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:26 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:27 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:28 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:29 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:29 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:30 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:31 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:32 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:32 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:33 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:34 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:35 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:36 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:37 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:38 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:39 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:39 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:40 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:41 - INFO - create_for_product(product_id=3832, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:42 - INFO - create_for_product(product_id=3832, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:42 - INFO - create_for_product(product_id=3832, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:43 - INFO - create_for_product(product_id=3832, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:44 - INFO - create_for_product(product_id=3832, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:45 - INFO - create_for_product(product_id=3832, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:46 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:46 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:47 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:48 - INFO - create_for_product(product_id=3832, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:49 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:50 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:51 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:52 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:52 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:53 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:54 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:55 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:56 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:56 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:57 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:58 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:59 - INFO - create_for_product(product_id=3832, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:00 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:01 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:02 - INFO - create_for_product(product_id=3832, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:03 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:04 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:05 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:06 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:07 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:08 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:09 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:10 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:10 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:11 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:12 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:13 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:14 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:15 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:16 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:17 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:18 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:18 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:19 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:20 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:21 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:22 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:23 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:24 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:26 - INFO - create_for_product(product_id=3832, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3832 HTTP/1.1" 200 None +2025-03-17 09:57:26 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:27 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:28 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:29 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:30 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:32 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:33 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:34 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:35 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:37 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:40 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:42 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:43 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:47 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:47 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:48 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:49 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:50 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:51 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:52 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:53 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:54 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:55 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:56 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:57 - INFO - create_for_product(product_id=3831, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:58 - INFO - create_for_product(product_id=3831, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:59 - INFO - create_for_product(product_id=3831, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:00 - INFO - create_for_product(product_id=3831, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:01 - INFO - create_for_product(product_id=3831, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:03 - INFO - create_for_product(product_id=3831, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:05 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:06 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:07 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:08 - INFO - create_for_product(product_id=3831, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:09 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:10 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:11 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:12 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:12 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:13 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:14 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:15 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:16 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:17 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:18 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:19 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:20 - INFO - create_for_product(product_id=3831, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 09:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:20 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 09:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:21 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 09:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:22 - INFO - create_for_product(product_id=3831, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 09:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:23 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 09:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:24 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 09:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:24 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 09:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:26 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 09:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:26 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 09:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:27 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 09:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:28 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 09:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:29 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 09:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:31 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 09:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:34 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 09:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:35 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 09:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:37 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 09:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:38 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 09:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:42 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 09:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:43 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 09:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:44 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 09:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:45 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 09:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:46 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 09:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:47 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 09:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:48 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 09:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:49 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 09:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:50 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 09:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:51 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 09:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:53 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 09:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:54 - INFO - create_for_product(product_id=3831, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 09:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3831 HTTP/1.1" 200 None +2025-03-17 09:58:55 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 09:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:56 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 09:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:57 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 09:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:59 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 09:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:00 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 09:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:01 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 09:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:02 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 09:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:03 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 09:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:04 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 09:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:06 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 09:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:11 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 09:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:13 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 09:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:17 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 09:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:18 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 09:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:19 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 09:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:21 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 09:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:22 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 09:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:23 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 09:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:25 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 09:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:26 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 09:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:27 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 09:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:28 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 09:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:29 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 09:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:30 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 09:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:31 - INFO - create_for_product(product_id=3830, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 09:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:32 - INFO - create_for_product(product_id=3830, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 09:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:33 - INFO - create_for_product(product_id=3830, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 09:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:34 - INFO - create_for_product(product_id=3830, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 09:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:35 - INFO - create_for_product(product_id=3830, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 09:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:36 - INFO - create_for_product(product_id=3830, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 09:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:37 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 09:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:38 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 09:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:39 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 09:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:40 - INFO - create_for_product(product_id=3830, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 09:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:41 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 09:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:41 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 09:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:43 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 09:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:44 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 09:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:47 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 09:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:48 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 09:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:49 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 09:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:51 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 09:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:52 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 09:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:55 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 09:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:57 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 09:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 09:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 09:59:58 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 09:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:02 - INFO - create_for_product(product_id=3830, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 10:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:04 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 10:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:05 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 10:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:06 - INFO - create_for_product(product_id=3830, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 10:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:07 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 10:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:08 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 10:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:09 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 10:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:11 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 10:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:12 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 10:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:16 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 10:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:17 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 10:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:19 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 10:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:23 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 10:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:24 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 10:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:24 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 10:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:25 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 10:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:26 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 10:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:28 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 10:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:31 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 10:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:32 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 10:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:33 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 10:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:34 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 10:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:35 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 10:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:36 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 10:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:38 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 10:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:41 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 10:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:42 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 10:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:43 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 10:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:44 - INFO - create_for_product(product_id=3830, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 10:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3830 HTTP/1.1" 200 None +2025-03-17 10:00:45 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 10:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:46 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 10:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:47 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 10:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:48 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-17 10:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:49 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=5, tab_type=local) called +2025-03-17 10:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:50 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 10:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:50 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=7, tab_type=local) called +2025-03-17 10:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:51 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-17 10:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:52 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 10:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:53 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=10, tab_type=local) called +2025-03-17 10:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:54 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=11, tab_type=local) called +2025-03-17 10:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:55 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 10:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:56 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=13, tab_type=local) called +2025-03-17 10:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:57 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=14, tab_type=local) called +2025-03-17 10:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:58 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 10:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:59 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-17 10:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:00:59 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=17, tab_type=local) called +2025-03-17 10:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:00 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 10:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:01 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=19, tab_type=local) called +2025-03-17 10:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:02 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-17 10:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:03 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 10:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:04 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=22, tab_type=local) called +2025-03-17 10:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:05 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=23, tab_type=local) called +2025-03-17 10:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:06 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 10:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:06 - INFO - create_for_product(product_id=3829, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=25, tab_type=local) called +2025-03-17 10:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:07 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=26, tab_type=local) called +2025-03-17 10:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:08 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=27, tab_type=local) called +2025-03-17 10:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:09 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-17 10:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:10 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=29, tab_type=local) called +2025-03-17 10:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:11 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=30, tab_type=local) called +2025-03-17 10:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:12 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-17 10:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:13 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=32, tab_type=local) called +2025-03-17 10:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:14 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=33, tab_type=local) called +2025-03-17 10:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:14 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-17 10:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:15 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=35, tab_type=local) called +2025-03-17 10:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:16 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=36, tab_type=local) called +2025-03-17 10:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:17 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-17 10:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:18 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=38, tab_type=local) called +2025-03-17 10:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:19 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=39, tab_type=local) called +2025-03-17 10:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:20 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-17 10:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:21 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=41, tab_type=local) called +2025-03-17 10:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:23 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=42, tab_type=local) called +2025-03-17 10:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:24 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-17 10:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:25 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=44, tab_type=local) called +2025-03-17 10:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:25 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=45, tab_type=local) called +2025-03-17 10:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:26 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-17 10:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:27 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=47, tab_type=local) called +2025-03-17 10:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:28 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=48, tab_type=local) called +2025-03-17 10:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:29 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-17 10:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:30 - INFO - create_for_product(product_id=3829, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=50, tab_type=local) called +2025-03-17 10:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:31 - INFO - create_for_product(product_id=3829, title=Description, content=La Chope au parfum , nickname=, position=51, tab_type=local) called +2025-03-17 10:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:32 - INFO - create_for_product(product_id=3829, title=Description, content=La bougie Chope au p, nickname=, position=52, tab_type=local) called +2025-03-17 10:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:34 - INFO - create_for_product(product_id=3829, title=Description, content=La bougie Chope au p, nickname=, position=53, tab_type=local) called +2025-03-17 10:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:35 - INFO - create_for_product(product_id=3829, title=Description, content=La Chope au parfum d, nickname=, position=54, tab_type=local) called +2025-03-17 10:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:36 - INFO - create_for_product(product_id=3829, title=Description, content= La bougie Chope au , nickname=, position=55, tab_type=local) called +2025-03-17 10:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:37 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=56, tab_type=local) called +2025-03-17 10:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:38 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=57, tab_type=local) called +2025-03-17 10:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:39 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=58, tab_type=local) called +2025-03-17 10:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:40 - INFO - create_for_product(product_id=3829, title=Description, content=Cette Chope au parfu, nickname=, position=59, tab_type=local) called +2025-03-17 10:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:41 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=60, tab_type=local) called +2025-03-17 10:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:42 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=61, tab_type=local) called +2025-03-17 10:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:43 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-17 10:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:44 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=63, tab_type=local) called +2025-03-17 10:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:45 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=64, tab_type=local) called +2025-03-17 10:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:46 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=65, tab_type=local) called +2025-03-17 10:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:47 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=66, tab_type=local) called +2025-03-17 10:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:48 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=67, tab_type=local) called +2025-03-17 10:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:50 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=68, tab_type=local) called +2025-03-17 10:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:51 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=69, tab_type=local) called +2025-03-17 10:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:52 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=70, tab_type=local) called +2025-03-17 10:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:53 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-17 10:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:54 - INFO - create_for_product(product_id=3829, title=Description, content= +Cette bougie est en, nickname=, position=72, tab_type=local) called +2025-03-17 10:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:55 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=73, tab_type=local) called +2025-03-17 10:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:56 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-17 10:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:57 - INFO - create_for_product(product_id=3829, title=Description, content=Cette bougie est ent, nickname=, position=75, tab_type=local) called +2025-03-17 10:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3829 HTTP/1.1" 200 None +2025-03-17 10:01:59 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:00 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:01 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 10:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:02 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:04 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 10:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:05 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 10:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:06 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:07 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 10:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:08 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 10:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:09 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:10 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 10:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:12 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 10:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:13 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:14 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 10:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:18 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 10:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:19 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 10:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:20 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 10:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:21 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 10:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:22 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 10:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:24 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 10:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:25 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 10:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:26 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 10:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:27 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 10:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:28 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 10:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:29 - INFO - create_for_product(product_id=3828, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 10:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:30 - INFO - create_for_product(product_id=3828, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 10:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:31 - INFO - create_for_product(product_id=3828, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 10:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:32 - INFO - create_for_product(product_id=3828, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 10:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:33 - INFO - create_for_product(product_id=3828, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 10:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:34 - INFO - create_for_product(product_id=3828, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 10:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:35 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 10:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:36 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 10:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:37 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 10:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:38 - INFO - create_for_product(product_id=3828, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 10:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:39 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 10:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:40 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 10:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:42 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 10:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:43 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 10:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:44 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 10:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:44 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 10:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:46 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 10:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:47 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 10:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:48 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 10:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:49 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 10:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:50 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 10:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:51 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 10:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:52 - INFO - create_for_product(product_id=3828, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 10:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:53 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 10:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:54 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 10:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:55 - INFO - create_for_product(product_id=3828, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 10:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:56 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 10:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:57 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 10:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:58 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 10:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:02:59 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 10:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:00 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 10:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:01 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 10:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:02 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 10:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:03 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 10:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:04 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 10:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:05 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 10:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:06 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 10:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:07 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 10:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:07 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 10:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:08 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 10:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:09 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 10:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:10 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 10:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:11 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 10:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:12 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 10:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:13 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 10:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:13 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 10:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:14 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 10:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:15 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 10:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:16 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 10:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:17 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 10:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:18 - INFO - create_for_product(product_id=3828, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 10:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3828 HTTP/1.1" 200 None +2025-03-17 10:03:19 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:20 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:21 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 10:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:22 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:23 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 10:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:24 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 10:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:25 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:26 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 10:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:27 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 10:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:28 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:29 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 10:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:30 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 10:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:31 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:32 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 10:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:33 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 10:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:34 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 10:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:34 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 10:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:35 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 10:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:36 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 10:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:37 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 10:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:38 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 10:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:38 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 10:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:39 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 10:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:40 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 10:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:41 - INFO - create_for_product(product_id=3827, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 10:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:41 - INFO - create_for_product(product_id=3827, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 10:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:42 - INFO - create_for_product(product_id=3827, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 10:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:43 - INFO - create_for_product(product_id=3827, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 10:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:44 - INFO - create_for_product(product_id=3827, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 10:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:45 - INFO - create_for_product(product_id=3827, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 10:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:46 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 10:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:46 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 10:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:47 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 10:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:48 - INFO - create_for_product(product_id=3827, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 10:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:49 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 10:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:49 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 10:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:50 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 10:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:51 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 10:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:52 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 10:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:52 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 10:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:53 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 10:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:54 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 10:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:55 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 10:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:56 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 10:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:57 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 10:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:58 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 10:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:59 - INFO - create_for_product(product_id=3827, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 10:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:00 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 10:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:00 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 10:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:01 - INFO - create_for_product(product_id=3827, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 10:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:02 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 10:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:03 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 10:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:04 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:05 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 10:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:06 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 10:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:07 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 10:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:08 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 10:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:08 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 10:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:09 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:10 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:11 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:11 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:12 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:13 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:14 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:15 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:15 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:16 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:17 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 10:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:18 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 10:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:19 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:19 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:20 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:21 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 10:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:22 - INFO - create_for_product(product_id=3827, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 10:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3827 HTTP/1.1" 200 None +2025-03-17 10:04:23 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:23 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:24 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 10:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:25 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:26 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 10:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:27 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 10:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:28 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:29 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 10:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:29 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 10:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:30 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:31 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 10:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:32 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 10:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:33 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:34 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 10:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:34 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 10:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:35 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 10:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:36 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 10:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:37 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 10:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:38 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:39 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 10:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:40 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 10:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:41 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 10:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:41 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 10:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:42 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 10:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:43 - INFO - create_for_product(product_id=3826, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 10:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:44 - INFO - create_for_product(product_id=3826, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 10:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:45 - INFO - create_for_product(product_id=3826, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 10:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:46 - INFO - create_for_product(product_id=3826, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 10:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:46 - INFO - create_for_product(product_id=3826, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 10:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:47 - INFO - create_for_product(product_id=3826, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:48 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:49 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 10:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:49 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 10:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:50 - INFO - create_for_product(product_id=3826, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 10:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:51 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 10:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:52 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 10:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:53 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 10:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:54 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 10:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:54 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 10:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:55 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 10:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:56 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 10:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:57 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 10:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:58 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 10:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:59 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 10:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:00 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 10:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:01 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 10:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:01 - INFO - create_for_product(product_id=3826, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 10:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:02 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 10:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:03 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 10:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:05 - INFO - create_for_product(product_id=3826, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 10:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:06 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 10:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:07 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 10:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:08 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 10:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:09 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 10:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:10 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 10:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:11 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 10:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:13 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 10:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:14 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 10:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:15 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 10:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:16 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 10:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:17 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 10:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:18 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 10:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:19 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 10:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:20 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 10:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:21 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 10:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:22 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 10:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:23 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 10:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:24 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 10:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:25 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 10:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:26 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 10:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:27 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 10:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:28 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 10:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:30 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 10:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:31 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 10:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:32 - INFO - create_for_product(product_id=3826, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 10:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3826 HTTP/1.1" 200 None +2025-03-17 10:05:34 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:35 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:36 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 10:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:37 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:38 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 10:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:40 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 10:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:41 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:42 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 10:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:43 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 10:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:44 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:46 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 10:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:47 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 10:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:48 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:49 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 10:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:50 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 10:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:51 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 10:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:52 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 10:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:53 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 10:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:54 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 10:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:55 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 10:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:56 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 10:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:57 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 10:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:58 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 10:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:05:59 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 10:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:00 - INFO - create_for_product(product_id=3825, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 10:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:01 - INFO - create_for_product(product_id=3825, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 10:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:02 - INFO - create_for_product(product_id=3825, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 10:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:04 - INFO - create_for_product(product_id=3825, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 10:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:05 - INFO - create_for_product(product_id=3825, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 10:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:06 - INFO - create_for_product(product_id=3825, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 10:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:07 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 10:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:08 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 10:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:09 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 10:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:10 - INFO - create_for_product(product_id=3825, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 10:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:11 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 10:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:12 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 10:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:13 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 10:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:14 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 10:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:15 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 10:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:16 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 10:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:16 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 10:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:17 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 10:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:18 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 10:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:20 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 10:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:21 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 10:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:22 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 10:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:23 - INFO - create_for_product(product_id=3825, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 10:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:24 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 10:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:25 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 10:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:26 - INFO - create_for_product(product_id=3825, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 10:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:27 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 10:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:28 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 10:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:29 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 10:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:30 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 10:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:31 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 10:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:32 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 10:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:33 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 10:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:34 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 10:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:35 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 10:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:37 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 10:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:38 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 10:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:39 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=62, tab_type=local) called +2025-03-17 10:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:40 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 10:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:41 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=64, tab_type=local) called +2025-03-17 10:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:42 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=65, tab_type=local) called +2025-03-17 10:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:42 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 10:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:43 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=67, tab_type=local) called +2025-03-17 10:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:44 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=68, tab_type=local) called +2025-03-17 10:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:45 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 10:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:46 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=70, tab_type=local) called +2025-03-17 10:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:47 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=71, tab_type=local) called +2025-03-17 10:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:48 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 10:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:49 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=73, tab_type=local) called +2025-03-17 10:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:50 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=74, tab_type=local) called +2025-03-17 10:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:50 - INFO - create_for_product(product_id=3825, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 10:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3825 HTTP/1.1" 200 None +2025-03-17 10:06:51 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:52 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:53 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 10:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:54 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:55 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 10:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:55 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 10:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:56 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:57 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 10:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:58 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 10:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:06:59 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:00 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 10:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:01 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 10:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:02 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:03 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 10:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:04 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 10:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:04 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 10:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:05 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=17, tab_type=local) called +2025-03-17 10:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:06 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=18, tab_type=local) called +2025-03-17 10:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:07 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 10:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:08 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=20, tab_type=local) called +2025-03-17 10:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:08 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=21, tab_type=local) called +2025-03-17 10:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:09 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 10:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:10 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=23, tab_type=local) called +2025-03-17 10:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:11 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=24, tab_type=local) called +2025-03-17 10:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:12 - INFO - create_for_product(product_id=3824, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 10:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:12 - INFO - create_for_product(product_id=3824, title=Description, content=La Chope au parfum , nickname=, position=26, tab_type=local) called +2025-03-17 10:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:13 - INFO - create_for_product(product_id=3824, title=Description, content=La bougie Chope au p, nickname=, position=27, tab_type=local) called +2025-03-17 10:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:14 - INFO - create_for_product(product_id=3824, title=Description, content=La bougie Chope au p, nickname=, position=28, tab_type=local) called +2025-03-17 10:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:15 - INFO - create_for_product(product_id=3824, title=Description, content=La Chope au parfum d, nickname=, position=29, tab_type=local) called +2025-03-17 10:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:16 - INFO - create_for_product(product_id=3824, title=Description, content= La bougie Chope au , nickname=, position=30, tab_type=local) called +2025-03-17 10:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:17 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=31, tab_type=local) called +2025-03-17 10:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:17 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=32, tab_type=local) called +2025-03-17 10:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:18 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=33, tab_type=local) called +2025-03-17 10:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:19 - INFO - create_for_product(product_id=3824, title=Description, content=Cette Chope au parfu, nickname=, position=34, tab_type=local) called +2025-03-17 10:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:20 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 10:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:21 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=36, tab_type=local) called +2025-03-17 10:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:22 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=37, tab_type=local) called +2025-03-17 10:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:23 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 10:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:24 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=39, tab_type=local) called +2025-03-17 10:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:24 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=40, tab_type=local) called +2025-03-17 10:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:25 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 10:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:26 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=42, tab_type=local) called +2025-03-17 10:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:27 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=43, tab_type=local) called +2025-03-17 10:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:28 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 10:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:28 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=45, tab_type=local) called +2025-03-17 10:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:29 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=46, tab_type=local) called +2025-03-17 10:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:30 - INFO - create_for_product(product_id=3824, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 10:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:31 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=48, tab_type=local) called +2025-03-17 10:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:32 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=49, tab_type=local) called +2025-03-17 10:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:33 - INFO - create_for_product(product_id=3824, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 10:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:34 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 10:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:35 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=52, tab_type=local) called +2025-03-17 10:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:36 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=53, tab_type=local) called +2025-03-17 10:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:36 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 10:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:37 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=55, tab_type=local) called +2025-03-17 10:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:38 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=56, tab_type=local) called +2025-03-17 10:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:39 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 10:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:40 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=58, tab_type=local) called +2025-03-17 10:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:41 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=59, tab_type=local) called +2025-03-17 10:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:41 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 10:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3824 HTTP/1.1" 200 None +2025-03-17 10:07:42 - INFO - create_for_product(product_id=3824, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=61, tab_type=local) called +2025-03-17 10:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:09:47 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:48 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:48 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=3, tab_type=local) called +2025-03-17 10:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:49 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:50 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=5, tab_type=local) called +2025-03-17 10:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:51 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=6, tab_type=local) called +2025-03-17 10:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:51 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:52 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=8, tab_type=local) called +2025-03-17 10:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=9, tab_type=local) called +2025-03-17 10:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:54 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=11, tab_type=local) called +2025-03-17 10:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:55 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=12, tab_type=local) called +2025-03-17 10:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:56 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:56 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=14, tab_type=local) called +2025-03-17 10:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:57 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=15, tab_type=local) called +2025-03-17 10:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:12:08 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:12:09 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 10:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:18:59 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 10:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:00 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 10:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:01 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 10:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:01 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-17 10:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:02 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=5, tab_type=local) called +2025-03-17 10:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:03 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 10:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:04 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=7, tab_type=local) called +2025-03-17 10:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:04 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-17 10:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:05 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 10:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:06 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=10, tab_type=local) called +2025-03-17 10:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:06 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=11, tab_type=local) called +2025-03-17 10:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:07 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 10:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:08 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=13, tab_type=local) called +2025-03-17 10:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:09 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=14, tab_type=local) called +2025-03-17 10:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:09 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 10:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:10 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-17 10:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:11 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=17, tab_type=local) called +2025-03-17 10:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:11 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 10:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:12 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=19, tab_type=local) called +2025-03-17 10:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:13 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-17 10:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:14 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 10:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:14 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=22, tab_type=local) called +2025-03-17 10:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:15 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=23, tab_type=local) called +2025-03-17 10:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:16 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 10:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:16 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=25, tab_type=local) called +2025-03-17 10:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 10:19:19 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 10:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:20 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 10:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:21 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 10:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:21 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-17 10:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:22 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=5, tab_type=local) called +2025-03-17 10:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:23 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 10:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:24 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=7, tab_type=local) called +2025-03-17 10:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:25 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-17 10:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:25 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 10:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:26 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=10, tab_type=local) called +2025-03-17 10:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:27 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=11, tab_type=local) called +2025-03-17 10:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:28 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 10:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:28 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=13, tab_type=local) called +2025-03-17 10:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:29 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=14, tab_type=local) called +2025-03-17 10:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:30 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 10:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:31 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=16, tab_type=local) called +2025-03-17 10:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:32 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=17, tab_type=local) called +2025-03-17 10:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:32 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 10:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:33 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=19, tab_type=local) called +2025-03-17 10:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:34 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=20, tab_type=local) called +2025-03-17 10:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:34 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 10:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:35 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=22, tab_type=local) called +2025-03-17 10:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:36 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=23, tab_type=local) called +2025-03-17 10:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:37 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 10:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:38 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=25, tab_type=local) called +2025-03-17 10:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 10:19:42 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 10:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:43 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 10:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:44 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 10:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:45 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=4, tab_type=local) called +2025-03-17 10:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:46 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=5, tab_type=local) called +2025-03-17 10:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:46 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 10:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:47 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=7, tab_type=local) called +2025-03-17 10:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:48 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=8, tab_type=local) called +2025-03-17 10:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3835 HTTP/1.1" 200 None +2025-03-17 10:19:49 - INFO - create_for_product(product_id=3835, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 10:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:34:37 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:38 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:38 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:39 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:40 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:34:40 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 10:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 10:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 10:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 10:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 10:39:13 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 10:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:14 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 10:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:15 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 10:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:15 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 10:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:16 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=5, tab_type=local) called +2025-03-17 10:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:17 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 10:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:18 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 10:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:18 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=8, tab_type=local) called +2025-03-17 10:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:19 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 10:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:20 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 10:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:20 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=11, tab_type=local) called +2025-03-17 10:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:21 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 10:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:22 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 10:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:23 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=14, tab_type=local) called +2025-03-17 10:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:24 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 10:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:24 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 10:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:25 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=17, tab_type=local) called +2025-03-17 10:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 10:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 10:39:26 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 10:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 12:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 12:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 12:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 12:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 12:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 12:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 12:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:21:46 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:47 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 12:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:48 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:48 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:49 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 12:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:50 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:51 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:51 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 12:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:52 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:54 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 12:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:54 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:55 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:56 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 12:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:56 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:57 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:58 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:59 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:21:59 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:00 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:01 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:02 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:02 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 12:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 12:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 12:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 12:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 12:25:21 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:21 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:22 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:23 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:24 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:25 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:25 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:26 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:27 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:28 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:29 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:29 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:30 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:31 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:31 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:32 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:33 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:34 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:34 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:35 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:36 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:37 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:38 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:39 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:40 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:41 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:42 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:42 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:43 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:44 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:45 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:46 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:47 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:48 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:49 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:50 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:51 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:52 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:53 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:54 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:54 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:55 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:56 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:57 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:58 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:59 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:25:59 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:00 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:01 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:02 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:03 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:04 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:04 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:05 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:06 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:07 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:09 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:10 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:11 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:13 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:14 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:17 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:20 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:21 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:25 - INFO - create_for_product(product_id=3838, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:26 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:28 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:30 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:31 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:32 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:33 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:34 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:35 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:36 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:38 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 12:26:39 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:40 - INFO - create_for_product(product_id=3837, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:41 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:42 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:44 - INFO - create_for_product(product_id=3837, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:45 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:46 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:47 - INFO - create_for_product(product_id=3837, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:48 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:49 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:50 - INFO - create_for_product(product_id=3837, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:51 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:54 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:55 - INFO - create_for_product(product_id=3837, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:56 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:57 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:59 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:00 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:01 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:02 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:03 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:04 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:05 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:06 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:07 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:08 - INFO - create_for_product(product_id=3837, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:09 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:10 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:11 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:12 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:13 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:14 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:15 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:16 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:17 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:18 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:19 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:20 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:21 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:23 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:24 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:26 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:28 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:31 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:35 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:35 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:36 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:37 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:38 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:39 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:40 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:41 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:42 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:43 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:44 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:45 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:46 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:47 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:49 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 12:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:51 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:59 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:27:59 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:00 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:01 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:02 - INFO - create_for_product(product_id=3837, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:02 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:03 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:04 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:04 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:05 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:06 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:07 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:08 - INFO - create_for_product(product_id=3837, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:09 - INFO - create_for_product(product_id=3837, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:11 - INFO - create_for_product(product_id=3837, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3837 HTTP/1.1" 200 None +2025-03-17 12:28:12 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:13 - INFO - create_for_product(product_id=3836, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:13 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:14 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:15 - INFO - create_for_product(product_id=3836, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:16 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:17 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:18 - INFO - create_for_product(product_id=3836, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:19 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:20 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:21 - INFO - create_for_product(product_id=3836, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:22 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:23 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:24 - INFO - create_for_product(product_id=3836, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:25 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:27 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:30 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:31 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:32 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:33 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:34 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:36 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:37 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:41 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:42 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:43 - INFO - create_for_product(product_id=3836, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:43 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:44 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:45 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:46 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:47 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 12:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:48 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:48 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:49 - INFO - create_for_product(product_id=3836, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 12:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:50 - INFO - create_for_product(product_id=3836, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 12:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 12:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3836 HTTP/1.1" 200 None +2025-03-17 12:28:51 - INFO - create_for_product(product_id=3836, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 12:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 13:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 13:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 13:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:52:53 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:54 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 13:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:55 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:55 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:56 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 13:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:57 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 13:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:58 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:58 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 13:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:59 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:00 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:01 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:01 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 13:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:02 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:03 - INFO - create_for_product(product_id=3838, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:04 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:05 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:05 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:06 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 13:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:07 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:08 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 13:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:08 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:09 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:10 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:11 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 13:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:11 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:12 - INFO - create_for_product(product_id=3838, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 13:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:13 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:14 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:15 - INFO - create_for_product(product_id=3838, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 13:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 13:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 13:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:53:38 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:39 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:39 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:40 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:41 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 13:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 13:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 13:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 13:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:57:17 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:18 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 13:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:18 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:19 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:20 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 13:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:21 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 13:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:57:21 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 13:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 13:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 13:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 13:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 13:58:46 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:46 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 13:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:47 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:48 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:49 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 13:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:49 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 13:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:50 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 13:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:51 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 13:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:51 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 13:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:52 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 13:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 13:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 13:58:53 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 13:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/None?force=True HTTP/1.1" 404 None +2025-03-17 14:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:00:56 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:57 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:58 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 14:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:59 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 14:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:00:59 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 14:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:00 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:01 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:02 - INFO - create_for_product(product_id=3838, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:02 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 14:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:03 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=2, tab_type=local) called +2025-03-17 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:04 - INFO - create_for_product(product_id=3838, title=Description, content=La Chope au parfum d, nickname=, position=1, tab_type=local) called +2025-03-17 14:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:04 - INFO - create_for_product(product_id=3838, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=2, tab_type=local) called +2025-03-17 14:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/3838 HTTP/1.1" 200 None +2025-03-17 14:01:05 - INFO - create_for_product(product_id=3838, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3813?force=true HTTP/1.1" 200 None +2025-03-17 14:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3812?force=true HTTP/1.1" 200 None +2025-03-17 14:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3811?force=true HTTP/1.1" 200 None +2025-03-17 14:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3810?force=true HTTP/1.1" 200 None +2025-03-17 14:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3809?force=true HTTP/1.1" 200 None +2025-03-17 14:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3808?force=true HTTP/1.1" 200 None +2025-03-17 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3807?force=true HTTP/1.1" 200 None +2025-03-17 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3806?force=true HTTP/1.1" 200 None +2025-03-17 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3805?force=true HTTP/1.1" 200 None +2025-03-17 14:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3804?force=true HTTP/1.1" 200 None +2025-03-17 14:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3803?force=true HTTP/1.1" 200 None +2025-03-17 14:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3802?force=true HTTP/1.1" 200 None +2025-03-17 14:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3801?force=true HTTP/1.1" 200 None +2025-03-17 14:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3800?force=true HTTP/1.1" 200 None +2025-03-17 14:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3799?force=true HTTP/1.1" 200 None +2025-03-17 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3798?force=true HTTP/1.1" 200 None +2025-03-17 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3797?force=true HTTP/1.1" 200 None +2025-03-17 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3796?force=true HTTP/1.1" 200 None +2025-03-17 14:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3795?force=true HTTP/1.1" 200 None +2025-03-17 14:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3794?force=true HTTP/1.1" 200 None +2025-03-17 14:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3793?force=true HTTP/1.1" 200 None +2025-03-17 14:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3792?force=true HTTP/1.1" 200 None +2025-03-17 14:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3791?force=true HTTP/1.1" 200 None +2025-03-17 14:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3790?force=true HTTP/1.1" 200 None +2025-03-17 14:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3789?force=true HTTP/1.1" 200 None +2025-03-17 14:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3788?force=true HTTP/1.1" 200 None +2025-03-17 14:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3787?force=true HTTP/1.1" 200 None +2025-03-17 14:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3786?force=true HTTP/1.1" 200 None +2025-03-17 14:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3785?force=true HTTP/1.1" 200 None +2025-03-17 14:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3784?force=true HTTP/1.1" 200 None +2025-03-17 14:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3783?force=true HTTP/1.1" 200 None +2025-03-17 14:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3782?force=true HTTP/1.1" 200 None +2025-03-17 14:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3781?force=true HTTP/1.1" 200 None +2025-03-17 14:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3780?force=true HTTP/1.1" 200 None +2025-03-17 14:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3779?force=true HTTP/1.1" 200 None +2025-03-17 14:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3778?force=true HTTP/1.1" 200 None +2025-03-17 14:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3777?force=true HTTP/1.1" 200 None +2025-03-17 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3776?force=true HTTP/1.1" 200 None +2025-03-17 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3775?force=true HTTP/1.1" 200 None +2025-03-17 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3774?force=true HTTP/1.1" 200 None +2025-03-17 14:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3773?force=true HTTP/1.1" 200 None +2025-03-17 14:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3772?force=true HTTP/1.1" 200 None +2025-03-17 14:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3771?force=true HTTP/1.1" 200 None +2025-03-17 14:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3770?force=true HTTP/1.1" 200 None +2025-03-17 14:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3769?force=true HTTP/1.1" 200 None +2025-03-17 14:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3768?force=true HTTP/1.1" 200 None +2025-03-17 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3767?force=true HTTP/1.1" 200 None +2025-03-17 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3766?force=true HTTP/1.1" 200 None +2025-03-17 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3765?force=true HTTP/1.1" 200 None +2025-03-17 14:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3764?force=true HTTP/1.1" 200 None +2025-03-17 14:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3763?force=true HTTP/1.1" 200 None +2025-03-17 14:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3762?force=true HTTP/1.1" 200 None +2025-03-17 14:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3761?force=true HTTP/1.1" 200 None +2025-03-17 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3760?force=true HTTP/1.1" 200 None +2025-03-17 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3759?force=true HTTP/1.1" 200 None +2025-03-17 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3758?force=true HTTP/1.1" 200 None +2025-03-17 14:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3757?force=true HTTP/1.1" 200 None +2025-03-17 14:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3756?force=true HTTP/1.1" 200 None +2025-03-17 14:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3755?force=true HTTP/1.1" 200 None +2025-03-17 14:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3754?force=true HTTP/1.1" 200 None +2025-03-17 14:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3753?force=true HTTP/1.1" 200 None +2025-03-17 14:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3752?force=true HTTP/1.1" 200 None +2025-03-17 14:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3751?force=true HTTP/1.1" 200 None +2025-03-17 14:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3750?force=true HTTP/1.1" 200 None +2025-03-17 14:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3749?force=true HTTP/1.1" 200 None +2025-03-17 14:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3748?force=true HTTP/1.1" 200 None +2025-03-17 14:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3747?force=true HTTP/1.1" 200 None +2025-03-17 14:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3746?force=true HTTP/1.1" 200 None +2025-03-17 14:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3745?force=true HTTP/1.1" 200 None +2025-03-17 14:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3744?force=true HTTP/1.1" 200 None +2025-03-17 14:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3743?force=true HTTP/1.1" 200 None +2025-03-17 14:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3742?force=true HTTP/1.1" 200 None +2025-03-17 14:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3741?force=true HTTP/1.1" 200 None +2025-03-17 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3740?force=true HTTP/1.1" 200 None +2025-03-17 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3739?force=true HTTP/1.1" 200 None +2025-03-17 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3738?force=true HTTP/1.1" 200 None +2025-03-17 14:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3737?force=true HTTP/1.1" 200 None +2025-03-17 14:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3736?force=true HTTP/1.1" 200 None +2025-03-17 14:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3735?force=true HTTP/1.1" 200 None +2025-03-17 14:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3734?force=true HTTP/1.1" 200 None +2025-03-17 14:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3733?force=true HTTP/1.1" 200 None +2025-03-17 14:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3732?force=true HTTP/1.1" 200 None +2025-03-17 14:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3731?force=true HTTP/1.1" 200 None +2025-03-17 14:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3730?force=true HTTP/1.1" 200 None +2025-03-17 14:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3729?force=true HTTP/1.1" 200 None +2025-03-17 14:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3728?force=true HTTP/1.1" 200 None +2025-03-17 14:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3727?force=true HTTP/1.1" 200 None +2025-03-17 14:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3726?force=true HTTP/1.1" 200 None +2025-03-17 14:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3725?force=true HTTP/1.1" 200 None +2025-03-17 14:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3724?force=true HTTP/1.1" 200 None +2025-03-17 14:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3723?force=true HTTP/1.1" 200 None +2025-03-17 14:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3722?force=true HTTP/1.1" 200 None +2025-03-17 14:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3721?force=true HTTP/1.1" 200 None +2025-03-17 14:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3720?force=true HTTP/1.1" 200 None +2025-03-17 14:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3719?force=true HTTP/1.1" 200 None +2025-03-17 14:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3718?force=true HTTP/1.1" 200 None +2025-03-17 14:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3717?force=true HTTP/1.1" 200 None +2025-03-17 14:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3716?force=true HTTP/1.1" 200 None +2025-03-17 14:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3715?force=true HTTP/1.1" 200 None +2025-03-17 14:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3714?force=true HTTP/1.1" 200 None +2025-03-17 14:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3713?force=true HTTP/1.1" 200 None +2025-03-17 14:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3712?force=true HTTP/1.1" 200 None +2025-03-17 14:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3711?force=true HTTP/1.1" 200 None +2025-03-17 14:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3710?force=true HTTP/1.1" 200 None +2025-03-17 14:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3709?force=true HTTP/1.1" 200 None +2025-03-17 14:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3708?force=true HTTP/1.1" 200 None +2025-03-17 14:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3707?force=true HTTP/1.1" 200 None +2025-03-17 14:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3706?force=true HTTP/1.1" 200 None +2025-03-17 14:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3705?force=true HTTP/1.1" 200 None +2025-03-17 14:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3704?force=true HTTP/1.1" 200 None +2025-03-17 14:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3703?force=true HTTP/1.1" 200 None +2025-03-17 14:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3702?force=true HTTP/1.1" 200 None +2025-03-17 14:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3701?force=true HTTP/1.1" 200 None +2025-03-17 14:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3700?force=true HTTP/1.1" 200 None +2025-03-17 14:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3699?force=true HTTP/1.1" 200 None +2025-03-17 14:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3698?force=true HTTP/1.1" 200 None +2025-03-17 14:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3697?force=true HTTP/1.1" 200 None +2025-03-17 14:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3696?force=true HTTP/1.1" 200 None +2025-03-17 14:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3695?force=true HTTP/1.1" 200 None +2025-03-17 14:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3694?force=true HTTP/1.1" 200 None +2025-03-17 14:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3693?force=true HTTP/1.1" 200 None +2025-03-17 14:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3692?force=true HTTP/1.1" 200 None +2025-03-17 14:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3691?force=true HTTP/1.1" 200 None +2025-03-17 14:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3690?force=true HTTP/1.1" 200 None +2025-03-17 14:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3689?force=true HTTP/1.1" 200 None +2025-03-17 14:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3688?force=true HTTP/1.1" 200 None +2025-03-17 14:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3687?force=true HTTP/1.1" 200 None +2025-03-17 14:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3686?force=true HTTP/1.1" 200 None +2025-03-17 14:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3685?force=true HTTP/1.1" 200 None +2025-03-17 14:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3684?force=true HTTP/1.1" 200 None +2025-03-17 14:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3683?force=true HTTP/1.1" 200 None +2025-03-17 14:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3682?force=true HTTP/1.1" 200 None +2025-03-17 14:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3681?force=true HTTP/1.1" 200 None +2025-03-17 14:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3680?force=true HTTP/1.1" 200 None +2025-03-17 14:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3679?force=true HTTP/1.1" 200 None +2025-03-17 14:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3678?force=true HTTP/1.1" 200 None +2025-03-17 14:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3677?force=true HTTP/1.1" 200 None +2025-03-17 14:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3676?force=true HTTP/1.1" 200 None +2025-03-17 14:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3675?force=true HTTP/1.1" 200 None +2025-03-17 14:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3674?force=true HTTP/1.1" 200 None +2025-03-17 14:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3673?force=true HTTP/1.1" 200 None +2025-03-17 14:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3672?force=true HTTP/1.1" 200 None +2025-03-17 14:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3671?force=true HTTP/1.1" 200 None +2025-03-17 14:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/36?force=True HTTP/1.1" 200 None +2025-03-17 14:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/34?force=True HTTP/1.1" 200 None +2025-03-17 14:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/38?force=True HTTP/1.1" 200 None +2025-03-17 14:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/33?force=True HTTP/1.1" 200 None +2025-03-17 14:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/35?force=True HTTP/1.1" 200 None +2025-03-17 14:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/37?force=True HTTP/1.1" 200 None +2025-03-17 14:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3838?force=True HTTP/1.1" 200 None +2025-03-17 14:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3837?force=True HTTP/1.1" 200 None +2025-03-17 14:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3836?force=True HTTP/1.1" 200 None +2025-03-17 14:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3835?force=True HTTP/1.1" 200 None +2025-03-17 14:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3834?force=True HTTP/1.1" 200 None +2025-03-17 14:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3833?force=True HTTP/1.1" 200 None +2025-03-17 14:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3832?force=True HTTP/1.1" 200 None +2025-03-17 14:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3831?force=True HTTP/1.1" 200 None +2025-03-17 14:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3830?force=True HTTP/1.1" 200 None +2025-03-17 14:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3829?force=True HTTP/1.1" 200 None +2025-03-17 14:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3828?force=True HTTP/1.1" 200 None +2025-03-17 14:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3827?force=True HTTP/1.1" 200 None +2025-03-17 14:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3826?force=True HTTP/1.1" 200 None +2025-03-17 14:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3825?force=True HTTP/1.1" 200 None +2025-03-17 14:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3824?force=True HTTP/1.1" 200 None +2025-03-17 14:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3823?force=True HTTP/1.1" 200 None +2025-03-17 14:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3822?force=True HTTP/1.1" 200 None +2025-03-17 14:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3821?force=True HTTP/1.1" 200 None +2025-03-17 14:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3820?force=True HTTP/1.1" 200 None +2025-03-17 14:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3818?force=True HTTP/1.1" 200 None +2025-03-17 14:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3817?force=True HTTP/1.1" 200 None +2025-03-17 14:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3816?force=True HTTP/1.1" 200 None +2025-03-17 14:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3815?force=True HTTP/1.1" 200 None +2025-03-17 14:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/3814?force=True HTTP/1.1" 200 None +2025-03-17 14:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/372?force=True HTTP/1.1" 200 None +2025-03-17 14:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/374?force=True HTTP/1.1" 200 None +2025-03-17 14:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-17 14:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/373?force=True HTTP/1.1" 200 None +2025-03-17 14:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/368?force=True HTTP/1.1" 200 None +2025-03-17 14:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/367?force=True HTTP/1.1" 200 None +2025-03-17 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/371?force=True HTTP/1.1" 200 None +2025-03-17 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/369?force=True HTTP/1.1" 200 None +2025-03-17 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/370?force=True HTTP/1.1" 200 None +2025-03-17 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3894 HTTP/1.1" 200 None +2025-03-17 14:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3895 HTTP/1.1" 200 None +2025-03-17 14:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3896 HTTP/1.1" 200 None +2025-03-17 14:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3897 HTTP/1.1" 200 None +2025-03-17 14:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3898 HTTP/1.1" 200 None +2025-03-17 14:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3899 HTTP/1.1" 200 None +2025-03-17 14:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3900 HTTP/1.1" 200 None +2025-03-17 14:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3901 HTTP/1.1" 200 None +2025-03-17 14:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3902 HTTP/1.1" 200 None +2025-03-17 14:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3903 HTTP/1.1" 200 None +2025-03-17 14:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3904 HTTP/1.1" 200 None +2025-03-17 14:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3905 HTTP/1.1" 200 None +2025-03-17 14:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3906 HTTP/1.1" 200 None +2025-03-17 14:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3907 HTTP/1.1" 200 None +2025-03-17 14:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3908 HTTP/1.1" 200 None +2025-03-17 14:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3909 HTTP/1.1" 200 None +2025-03-17 14:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3910 HTTP/1.1" 200 None +2025-03-17 14:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3911 HTTP/1.1" 200 None +2025-03-17 14:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3912 HTTP/1.1" 200 None +2025-03-17 14:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3913 HTTP/1.1" 200 None +2025-03-17 14:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3914 HTTP/1.1" 200 None +2025-03-17 14:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3915 HTTP/1.1" 200 None +2025-03-17 14:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3916 HTTP/1.1" 200 None +2025-03-17 14:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3917 HTTP/1.1" 200 None +2025-03-17 14:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3918 HTTP/1.1" 200 None +2025-03-17 14:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3919 HTTP/1.1" 200 None +2025-03-17 14:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3920 HTTP/1.1" 200 None +2025-03-17 14:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3921 HTTP/1.1" 200 None +2025-03-17 14:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3922 HTTP/1.1" 200 None +2025-03-17 14:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3923 HTTP/1.1" 200 None +2025-03-17 14:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3924 HTTP/1.1" 200 None +2025-03-17 14:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3925 HTTP/1.1" 200 None +2025-03-17 14:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3926 HTTP/1.1" 200 None +2025-03-17 14:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3927 HTTP/1.1" 200 None +2025-03-17 14:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3928 HTTP/1.1" 200 None +2025-03-17 14:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3929 HTTP/1.1" 200 None +2025-03-17 14:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3930 HTTP/1.1" 200 None +2025-03-17 14:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3931 HTTP/1.1" 200 None +2025-03-17 14:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3932 HTTP/1.1" 200 None +2025-03-17 14:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3933 HTTP/1.1" 200 None +2025-03-17 14:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3934 HTTP/1.1" 200 None +2025-03-17 14:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3935 HTTP/1.1" 200 None +2025-03-17 14:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3936 HTTP/1.1" 200 None +2025-03-17 14:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3937 HTTP/1.1" 200 None +2025-03-17 14:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3938 HTTP/1.1" 200 None +2025-03-17 14:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3939 HTTP/1.1" 200 None +2025-03-17 14:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3940 HTTP/1.1" 200 None +2025-03-17 14:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3941 HTTP/1.1" 200 None +2025-03-17 14:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3942 HTTP/1.1" 200 None +2025-03-17 14:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3943 HTTP/1.1" 200 None +2025-03-17 14:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3944 HTTP/1.1" 200 None +2025-03-17 14:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3945 HTTP/1.1" 200 None +2025-03-17 14:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3946 HTTP/1.1" 200 None +2025-03-17 14:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3947 HTTP/1.1" 200 None +2025-03-17 14:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3948 HTTP/1.1" 200 None +2025-03-17 14:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3949 HTTP/1.1" 200 None +2025-03-17 14:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3950 HTTP/1.1" 200 None +2025-03-17 14:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3951 HTTP/1.1" 200 None +2025-03-17 14:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3952 HTTP/1.1" 200 None +2025-03-17 14:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3953 HTTP/1.1" 200 None +2025-03-17 14:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3954 HTTP/1.1" 200 None +2025-03-17 14:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3955 HTTP/1.1" 200 None +2025-03-17 14:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3956 HTTP/1.1" 200 None +2025-03-17 14:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3957 HTTP/1.1" 200 None +2025-03-17 14:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3958 HTTP/1.1" 200 None +2025-03-17 14:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3959 HTTP/1.1" 200 None +2025-03-17 14:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3960 HTTP/1.1" 200 None +2025-03-17 14:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3961 HTTP/1.1" 200 None +2025-03-17 14:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3962 HTTP/1.1" 200 None +2025-03-17 14:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3963 HTTP/1.1" 200 None +2025-03-17 14:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3964 HTTP/1.1" 200 None +2025-03-17 14:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3965 HTTP/1.1" 200 None +2025-03-17 14:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3966 HTTP/1.1" 200 None +2025-03-17 14:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3967 HTTP/1.1" 200 None +2025-03-17 14:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3968 HTTP/1.1" 200 None +2025-03-17 14:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3969 HTTP/1.1" 200 None +2025-03-17 14:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3970 HTTP/1.1" 200 None +2025-03-17 14:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3971 HTTP/1.1" 200 None +2025-03-17 14:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3972 HTTP/1.1" 200 None +2025-03-17 14:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3973 HTTP/1.1" 200 None +2025-03-17 14:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3974 HTTP/1.1" 200 None +2025-03-17 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3975 HTTP/1.1" 200 None +2025-03-17 14:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3976 HTTP/1.1" 200 None +2025-03-17 14:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3977 HTTP/1.1" 200 None +2025-03-17 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3978 HTTP/1.1" 200 None +2025-03-17 14:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3979 HTTP/1.1" 200 None +2025-03-17 14:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3980 HTTP/1.1" 200 None +2025-03-17 14:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3981 HTTP/1.1" 200 None +2025-03-17 14:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3982 HTTP/1.1" 200 None +2025-03-17 14:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3983 HTTP/1.1" 200 None +2025-03-17 14:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3984 HTTP/1.1" 200 None +2025-03-17 14:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3985 HTTP/1.1" 200 None +2025-03-17 14:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3986 HTTP/1.1" 200 None +2025-03-17 14:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3987 HTTP/1.1" 200 None +2025-03-17 14:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3988 HTTP/1.1" 200 None +2025-03-17 14:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3989 HTTP/1.1" 200 None +2025-03-17 14:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3990 HTTP/1.1" 200 None +2025-03-17 14:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3991 HTTP/1.1" 200 None +2025-03-17 14:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3992 HTTP/1.1" 200 None +2025-03-17 14:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3993 HTTP/1.1" 200 None +2025-03-17 14:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-17 14:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3994 HTTP/1.1" 200 None +2025-03-17 14:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3995 HTTP/1.1" 200 None +2025-03-17 14:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3996 HTTP/1.1" 200 None +2025-03-17 14:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3997 HTTP/1.1" 200 None +2025-03-17 14:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3998 HTTP/1.1" 200 None +2025-03-17 14:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/3999 HTTP/1.1" 200 None +2025-03-17 14:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4000 HTTP/1.1" 200 None +2025-03-17 14:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4001 HTTP/1.1" 200 None +2025-03-17 14:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4002 HTTP/1.1" 200 None +2025-03-17 14:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4003 HTTP/1.1" 200 None +2025-03-17 14:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4004 HTTP/1.1" 200 None +2025-03-17 14:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4005 HTTP/1.1" 200 None +2025-03-17 14:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4006 HTTP/1.1" 200 None +2025-03-17 14:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4007 HTTP/1.1" 200 None +2025-03-17 14:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4008 HTTP/1.1" 200 None +2025-03-17 14:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4009 HTTP/1.1" 200 None +2025-03-17 14:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4010 HTTP/1.1" 200 None +2025-03-17 14:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4011 HTTP/1.1" 200 None +2025-03-17 14:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4012 HTTP/1.1" 200 None +2025-03-17 14:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4013 HTTP/1.1" 200 None +2025-03-17 14:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4014 HTTP/1.1" 200 None +2025-03-17 14:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4015 HTTP/1.1" 200 None +2025-03-17 14:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4016 HTTP/1.1" 200 None +2025-03-17 14:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4017 HTTP/1.1" 200 None +2025-03-17 14:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4018 HTTP/1.1" 200 None +2025-03-17 14:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4019 HTTP/1.1" 200 None +2025-03-17 14:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4020 HTTP/1.1" 200 None +2025-03-17 14:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4021 HTTP/1.1" 200 None +2025-03-17 14:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4022 HTTP/1.1" 200 None +2025-03-17 14:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4023 HTTP/1.1" 200 None +2025-03-17 14:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4024 HTTP/1.1" 200 None +2025-03-17 14:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4025 HTTP/1.1" 200 None +2025-03-17 14:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4026 HTTP/1.1" 200 None +2025-03-17 14:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4027 HTTP/1.1" 200 None +2025-03-17 14:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4028 HTTP/1.1" 200 None +2025-03-17 14:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4029 HTTP/1.1" 200 None +2025-03-17 14:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4030 HTTP/1.1" 200 None +2025-03-17 14:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4031 HTTP/1.1" 200 None +2025-03-17 14:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4032 HTTP/1.1" 200 None +2025-03-17 14:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4033 HTTP/1.1" 200 None +2025-03-17 14:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4034 HTTP/1.1" 200 None +2025-03-17 14:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4035 HTTP/1.1" 200 None +2025-03-17 14:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-17 14:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4036 HTTP/1.1" 200 None +2025-03-17 14:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3897 HTTP/1.1" 200 None +2025-03-17 14:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/383 HTTP/1.1" 200 None +2025-03-17 14:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/384 HTTP/1.1" 200 None +2025-03-17 14:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3894 HTTP/1.1" 200 None +2025-03-17 14:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/384 HTTP/1.1" 200 None +2025-03-17 14:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3924 HTTP/1.1" 200 None +2025-03-17 14:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/385 HTTP/1.1" 200 None +2025-03-17 14:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-17 14:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/386 HTTP/1.1" 400 None +2025-03-17 14:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-17 14:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/387 HTTP/1.1" 400 None +2025-03-17 14:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3940 HTTP/1.1" 200 None +2025-03-17 14:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/388 HTTP/1.1" 200 None +2025-03-17 14:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-17 14:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/389 HTTP/1.1" 400 None +2025-03-17 14:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-17 14:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/3946 HTTP/1.1" 200 None +2025-03-17 14:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/390 HTTP/1.1" 200 None +2025-03-17 14:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-17 14:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-17 14:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-17 14:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-17 14:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-17 14:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-17 14:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/42/terms HTTP/1.1" 201 None +2025-03-17 14:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/40/terms HTTP/1.1" 201 None +2025-03-17 14:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/44/terms HTTP/1.1" 201 None +2025-03-17 14:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/44/terms HTTP/1.1" 201 None +2025-03-17 14:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/44/terms HTTP/1.1" 201 None +2025-03-17 14:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/44/terms HTTP/1.1" 400 None +2025-03-17 14:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/39/terms HTTP/1.1" 201 None +2025-03-17 14:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/41/terms HTTP/1.1" 201 None +2025-03-17 14:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/43/terms HTTP/1.1" 201 None +2025-03-17 14:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:19:01 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:02 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:02 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:02 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:02 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:03 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:03 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-17 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:03 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:04 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-17 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:05 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-17 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:06 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-17 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:07 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-17 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:07 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:07 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:07 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-17 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:08 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:08 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:08 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-17 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-17 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:09 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-17 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:09 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-17 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:09 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-17 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:10 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-17 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:10 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-17 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:10 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-17 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:11 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-17 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:11 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:11 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-17 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-17 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:12 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:12 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-17 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:12 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-17 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:13 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:13 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-17 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:13 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-17 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:14 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-17 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:14 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-17 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:14 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-17 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:14 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-17 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:15 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-17 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:15 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-17 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:15 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:16 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:16 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-17 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:16 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-17 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:17 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-17 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:17 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-17 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:17 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:18 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-17 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:18 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-17 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:18 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:19 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-17 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:19 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-17 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:19 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:20 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-17 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:20 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-17 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:20 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:20 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-17 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:21 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-17 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:21 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:21 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-17 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:21 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-17 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:22 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 14:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:22 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-17 14:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:23 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-17 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:19:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-17 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:26:50 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:51 - INFO - create_for_product(product_id=4037, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:51 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:52 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:53 - INFO - create_for_product(product_id=4037, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:54 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:54 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:55 - INFO - create_for_product(product_id=4037, title=Description, content=La bougie Chope au p, nickname=, position=8, tab_type=local) called +2025-03-17 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:56 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 14:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:57 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 14:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:57 - INFO - create_for_product(product_id=4037, title=Description, content=La Chope au parfum d, nickname=, position=11, tab_type=local) called +2025-03-17 14:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:58 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:59 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:26:59 - INFO - create_for_product(product_id=4037, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-17 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:00 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:01 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:02 - INFO - create_for_product(product_id=4037, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-17 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:02 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:03 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:04 - INFO - create_for_product(product_id=4037, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-17 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:05 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:05 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:06 - INFO - create_for_product(product_id=4037, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-17 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:07 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 14:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:08 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:08 - INFO - create_for_product(product_id=4037, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-17 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:09 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-17 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:10 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-17 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:11 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-17 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:11 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-17 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:12 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-17 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:13 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=32, tab_type=local) called +2025-03-17 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:14 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-17 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:14 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-17 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:15 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=35, tab_type=local) called +2025-03-17 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:16 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-17 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:17 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-17 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:17 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:18 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-17 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:19 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-17 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:20 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:20 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-17 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:21 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-17 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:22 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=44, tab_type=local) called +2025-03-17 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:23 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-17 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:24 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-17 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:24 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=47, tab_type=local) called +2025-03-17 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:25 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-17 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:26 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-17 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:27 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:28 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:28 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-17 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:29 - INFO - create_for_product(product_id=4037, title=Description, content= +Cette bougie est en, nickname=, position=53, tab_type=local) called +2025-03-17 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:30 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:31 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=55, tab_type=local) called +2025-03-17 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:31 - INFO - create_for_product(product_id=4037, title=Description, content= +Cette bougie est en, nickname=, position=56, tab_type=local) called +2025-03-17 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:32 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=57, tab_type=local) called +2025-03-17 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:33 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=58, tab_type=local) called +2025-03-17 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:33 - INFO - create_for_product(product_id=4037, title=Description, content= +Cette bougie est en, nickname=, position=59, tab_type=local) called +2025-03-17 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:34 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=60, tab_type=local) called +2025-03-17 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:35 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=61, tab_type=local) called +2025-03-17 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:36 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=62, tab_type=local) called +2025-03-17 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:36 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=63, tab_type=local) called +2025-03-17 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:37 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=64, tab_type=local) called +2025-03-17 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:38 - INFO - create_for_product(product_id=4037, title=Description, content= +Cette bougie est en, nickname=, position=65, tab_type=local) called +2025-03-17 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:39 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=66, tab_type=local) called +2025-03-17 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:39 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=67, tab_type=local) called +2025-03-17 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:40 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=68, tab_type=local) called +2025-03-17 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:41 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=69, tab_type=local) called +2025-03-17 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:42 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=70, tab_type=local) called +2025-03-17 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:42 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=71, tab_type=local) called +2025-03-17 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:43 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=72, tab_type=local) called +2025-03-17 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:44 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=73, tab_type=local) called +2025-03-17 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:45 - INFO - create_for_product(product_id=4037, title=Description, content=Cette bougie est ent, nickname=, position=74, tab_type=local) called +2025-03-17 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:45 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=75, tab_type=local) called +2025-03-17 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:29:17 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:18 - INFO - create_for_product(product_id=4037, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:18 - INFO - create_for_product(product_id=4037, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4037 HTTP/1.1" 200 None +2025-03-17 14:29:19 - INFO - create_for_product(product_id=4037, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 14:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4037?force=True HTTP/1.1" 200 None +2025-03-17 14:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:37:21 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:21 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:22 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:22 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:22 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:23 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:23 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:23 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:24 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:24 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:25 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:25 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 14:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:25 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:26 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:26 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:26 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:27 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:27 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:27 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:28 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:28 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:28 - INFO - create_for_product(product_id=None, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:29 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:29 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:29 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:30 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:30 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:30 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:30 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:31 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:31 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:31 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:32 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:32 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:32 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:32 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:33 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:33 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:33 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:33 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:34 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:34 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:34 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:34 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:35 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:35 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:35 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:35 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:36 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:36 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:36 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:37 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:37 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:37 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:37 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:38 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:38 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:38 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:39 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:39 - INFO - create_for_product(product_id=None, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:39 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:39 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:40 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:40 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:40 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:41 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:41 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:41 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:41 - INFO - create_for_product(product_id=None, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:37:42 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:38:43 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:43 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:43 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:43 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:44 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:44 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:44 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:45 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:45 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:45 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:45 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum d, nickname=, position=2, tab_type=local) called +2025-03-17 14:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:46 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:46 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:46 - INFO - create_for_product(product_id=None, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 14:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:46 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:38:47 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:39:04 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:04 - INFO - create_for_product(product_id=None, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:04 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:05 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:05 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:05 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:06 - INFO - create_for_product(product_id=None, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:06 - INFO - create_for_product(product_id=None, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-17 14:39:06 - INFO - create_for_product(product_id=None, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-17 14:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:40:33 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:34 - INFO - create_for_product(product_id=4038, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:34 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:35 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:36 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:37 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:38 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:39 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:40 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:40 - INFO - create_for_product(product_id=4038, title=Description, content=La Chope au parfum d, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:42 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:43 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:43 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:44 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:45 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:46 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:46 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:47 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:48 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:48 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:49 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:50 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:51 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:51 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:52 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:53 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:54 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:54 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:55 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:56 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:57 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:57 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:58 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:59 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:00 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:00 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:01 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:02 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:02 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:03 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:04 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:04 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:05 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:06 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:07 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:07 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:08 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:09 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:09 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:10 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:11 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:12 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:12 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:13 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:14 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:14 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:15 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:16 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:16 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:17 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:18 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:19 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:20 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:26 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:29 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:34 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:36 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:38 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:38 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:39 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:40 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:23 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:24 - INFO - create_for_product(product_id=4038, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:25 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:26 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:26 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:27 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:27 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:28 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:29 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:30 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:30 - INFO - create_for_product(product_id=4038, title=Description, content=La Chope au parfum d, nickname=, position=2, tab_type=local) called +2025-03-17 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:31 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:32 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:52:32 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 14:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 14:59:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:07:00 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:07:31 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:07:32 - INFO - create_for_product(product_id=4038, title=Description, content=La Chope au parfum , nickname=, position=2, tab_type=local) called +2025-03-17 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:57 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:58 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:58 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=3, tab_type=local) called +2025-03-17 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:59 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=4, tab_type=local) called +2025-03-17 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:00 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=5, tab_type=local) called +2025-03-17 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:00 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=6, tab_type=local) called +2025-03-17 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:01 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=7, tab_type=local) called +2025-03-17 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:02 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=8, tab_type=local) called +2025-03-17 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:03 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=9, tab_type=local) called +2025-03-17 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:03 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=10, tab_type=local) called +2025-03-17 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:04 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=11, tab_type=local) called +2025-03-17 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:05 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=12, tab_type=local) called +2025-03-17 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:05 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=13, tab_type=local) called +2025-03-17 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:06 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=14, tab_type=local) called +2025-03-17 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:07 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=15, tab_type=local) called +2025-03-17 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:08 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=16, tab_type=local) called +2025-03-17 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:08 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=17, tab_type=local) called +2025-03-17 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:28 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:28 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 15:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:29 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=3, tab_type=local) called +2025-03-17 15:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:30 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=4, tab_type=local) called +2025-03-17 15:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:30 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=5, tab_type=local) called +2025-03-17 15:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:31 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=6, tab_type=local) called +2025-03-17 15:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:32 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=7, tab_type=local) called +2025-03-17 15:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:33 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=8, tab_type=local) called +2025-03-17 15:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:33 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=9, tab_type=local) called +2025-03-17 15:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:34 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=10, tab_type=local) called +2025-03-17 15:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:35 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=11, tab_type=local) called +2025-03-17 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:36 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=12, tab_type=local) called +2025-03-17 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:36 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=13, tab_type=local) called +2025-03-17 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=14, tab_type=local) called +2025-03-17 15:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:38 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=15, tab_type=local) called +2025-03-17 15:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:39 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=16, tab_type=local) called +2025-03-17 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:39 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=17, tab_type=local) called +2025-03-17 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:19 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:20 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:35 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:36 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=3, tab_type=local) called +2025-03-17 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=4, tab_type=local) called +2025-03-17 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:38 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=5, tab_type=local) called +2025-03-17 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:39 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=6, tab_type=local) called +2025-03-17 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:40 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=7, tab_type=local) called +2025-03-17 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:40 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=8, tab_type=local) called +2025-03-17 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:48 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:21 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:22 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:23 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:23 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=4, tab_type=local) called +2025-03-17 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:24 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=5, tab_type=local) called +2025-03-17 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:25 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=6, tab_type=local) called +2025-03-17 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:26 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=7, tab_type=local) called +2025-03-17 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:26 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=8, tab_type=local) called +2025-03-17 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:27 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=9, tab_type=local) called +2025-03-17 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:28 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=10, tab_type=local) called +2025-03-17 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:28 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=11, tab_type=local) called +2025-03-17 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:29 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=12, tab_type=local) called +2025-03-17 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:30 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=13, tab_type=local) called +2025-03-17 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:31 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=14, tab_type=local) called +2025-03-17 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:31 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=15, tab_type=local) called +2025-03-17 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:32 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=16, tab_type=local) called +2025-03-17 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:33 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=17, tab_type=local) called +2025-03-17 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:34 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=18, tab_type=local) called +2025-03-17 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:34 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=19, tab_type=local) called +2025-03-17 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:35 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=20, tab_type=local) called +2025-03-17 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:36 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=21, tab_type=local) called +2025-03-17 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=22, tab_type=local) called +2025-03-17 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=23, tab_type=local) called +2025-03-17 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:38 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=24, tab_type=local) called +2025-03-17 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:39 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=25, tab_type=local) called +2025-03-17 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:39 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=26, tab_type=local) called +2025-03-17 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:40 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=27, tab_type=local) called +2025-03-17 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:41 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=28, tab_type=local) called +2025-03-17 15:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:42 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=29, tab_type=local) called +2025-03-17 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:42 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=30, tab_type=local) called +2025-03-17 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:43 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=31, tab_type=local) called +2025-03-17 15:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:44 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=32, tab_type=local) called +2025-03-17 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:44 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=33, tab_type=local) called +2025-03-17 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:45 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=34, tab_type=local) called +2025-03-17 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:46 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=35, tab_type=local) called +2025-03-17 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:46 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=36, tab_type=local) called +2025-03-17 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:47 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=37, tab_type=local) called +2025-03-17 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:48 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=38, tab_type=local) called +2025-03-17 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:49 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=39, tab_type=local) called +2025-03-17 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:49 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=40, tab_type=local) called +2025-03-17 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:50 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=41, tab_type=local) called +2025-03-17 15:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:51 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=42, tab_type=local) called +2025-03-17 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:51 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=43, tab_type=local) called +2025-03-17 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:52 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=44, tab_type=local) called +2025-03-17 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:53 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=45, tab_type=local) called +2025-03-17 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:54 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=46, tab_type=local) called +2025-03-17 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:54 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=47, tab_type=local) called +2025-03-17 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:55 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=48, tab_type=local) called +2025-03-17 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:56 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=49, tab_type=local) called +2025-03-17 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:56 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=50, tab_type=local) called +2025-03-17 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:57 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=51, tab_type=local) called +2025-03-17 15:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:58 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=52, tab_type=local) called +2025-03-17 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:59 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=53, tab_type=local) called +2025-03-17 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:40:59 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=54, tab_type=local) called +2025-03-17 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:11 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:12 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:13 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:13 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:14 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:15 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:15 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:16 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:17 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:18 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:18 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:19 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:20 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:20 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:21 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:22 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:23 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:24 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:24 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:25 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:26 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:27 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:27 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:28 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:29 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:29 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:30 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:31 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:32 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:32 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:33 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:34 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:35 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:36 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:36 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:37 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:38 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:38 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:39 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:40 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:41 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:42 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:43 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:44 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:44 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:45 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:46 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:47 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:47 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:48 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:49 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:49 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:50 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:10 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:11 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:12 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:12 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:13 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:14 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:14 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:15 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:16 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:17 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:17 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:18 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:19 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:20 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:20 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:21 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:22 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:22 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:23 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:24 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:25 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:26 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:26 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:27 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:28 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:28 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:29 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:30 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:30 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:31 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:32 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:32 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:33 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:34 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:34 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:35 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:36 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:37 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:38 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:39 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:39 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:40 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:41 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:47:15 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:47:16 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:47:16 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:03 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:04 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:04 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:05 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:06 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:06 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:07 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:08 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:09 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:09 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:10 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:11 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:12 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:12 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:13 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:14 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:14 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:15 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:16 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:17 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:17 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:18 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:19 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:19 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:20 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:21 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:22 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:23 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:25 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:26 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:27 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:27 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:28 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:29 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:29 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:30 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:31 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:31 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:32 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:33 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:34 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:34 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:35 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:36 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:36 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:37 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:38 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:39 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:40 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:41 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:42 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:43 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:38 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:39 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:40 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:40 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:41 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:42 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:01 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:02 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:03 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:03 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:04 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=1, tab_type=local) called +2025-03-17 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:05 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=1, tab_type=local) called +2025-03-17 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:05 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:54:06 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=1, tab_type=local) called +2025-03-17 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:03 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:04 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:05 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:05 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:06 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:07 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:08 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:08 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:09 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:10 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:10 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:11 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:12 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:13 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:13 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:14 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:15 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:16 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:16 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:17 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:18 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:19 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:19 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:20 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:21 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:21 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:22 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:23 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:24 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:25 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:25 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:26 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:27 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:28 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:28 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:29 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:30 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:30 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:31 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:32 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:32 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:33 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:34 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:34 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:35 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:36 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:36 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:37 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:38 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:38 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:39 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:40 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:41 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 15:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 15:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 15:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 15:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:09 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:10 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:10 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:11 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:12 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:13 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:13 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:14 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:15 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:16 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:16 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:17 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:18 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:18 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 15:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:19 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:20 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:21 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:21 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:22 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:23 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:24 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:25 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:25 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:26 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:27 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:27 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:28 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:29 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:30 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:30 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:31 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:32 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:32 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:33 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:34 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:35 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:35 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:36 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:37 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:38 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:39 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:40 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:40 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:42 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:42 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:43 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:44 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:45 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:45 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:46 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 15:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:47 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 15:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:48 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 15:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 15:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 15:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 16:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 16:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 16:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:17 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:18 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:19 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:19 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:20 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:21 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:22 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:23 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:23 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:24 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:25 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:26 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:26 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:27 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:28 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:28 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:29 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:30 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:31 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:31 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:32 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:33 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:33 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:34 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:35 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:36 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:36 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:37 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:38 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:38 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:39 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:40 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:41 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:42 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:43 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:43 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:44 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:45 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:46 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:46 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:47 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:48 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:48 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:49 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:50 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:51 - INFO - create_for_product(product_id=4038, title=Description, content= +Cette bougie est en, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:51 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:52 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:53 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:53 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:54 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:55 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:56 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:32 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:32 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:33 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:34 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:34 - INFO - create_for_product(product_id=4038, title=Description, content=La bougie Chope au p, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:35 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:36 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:37 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:37 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:38 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:39 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:39 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:40 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:41 - INFO - create_for_product(product_id=4038, title=Description, content= La bougie Chope au , nickname=, position=2, tab_type=local) called +2025-03-17 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:41 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:42 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:43 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:44 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:44 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:45 - INFO - create_for_product(product_id=4038, title=Description, content=Cette Chope au parfu, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-17 16:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-17 16:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-17 16:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-17 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:52 - INFO - create_for_product(product_id=4038, title=Conseils dutilisation, content=- Allumez la bougie , nickname=, position=1, tab_type=local) called +2025-03-17 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:53 - INFO - create_for_product(product_id=4038, title=Description, content=Cette bougie est ent, nickname=, position=2, tab_type=local) called +2025-03-17 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-17 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-17 16:02:53 - INFO - create_for_product(product_id=4038, title=Prcautions articles, content=Gardez la mche coup, nickname=, position=3, tab_type=local) called +2025-03-17 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 10:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 10:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 10:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 10:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 10:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 10:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 11:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 11:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 11:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 11:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 11:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 11:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 11:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 11:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 11:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 400 None +2025-03-18 11:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 400 None +2025-03-18 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 400 None +2025-03-18 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 400 None +2025-03-18 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 400 None +2025-03-18 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 400 None +2025-03-18 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4039 HTTP/1.1" 200 None +2025-03-18 11:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4040 HTTP/1.1" 200 None +2025-03-18 11:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4041 HTTP/1.1" 200 None +2025-03-18 11:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4042 HTTP/1.1" 200 None +2025-03-18 11:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4043 HTTP/1.1" 200 None +2025-03-18 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4044 HTTP/1.1" 200 None +2025-03-18 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4038 HTTP/1.1" 200 None +2025-03-18 11:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 11:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4045 HTTP/1.1" 200 None +2025-03-18 11:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 11:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 11:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4045?force=True HTTP/1.1" 200 None +2025-03-18 12:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4044?force=True HTTP/1.1" 200 None +2025-03-18 12:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4043?force=True HTTP/1.1" 200 None +2025-03-18 12:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4042?force=True HTTP/1.1" 200 None +2025-03-18 12:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4041?force=True HTTP/1.1" 200 None +2025-03-18 12:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4040?force=True HTTP/1.1" 200 None +2025-03-18 12:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4039?force=True HTTP/1.1" 200 None +2025-03-18 12:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4038?force=True HTTP/1.1" 200 None +2025-03-18 12:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-18 12:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-18 12:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-18 12:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-18 12:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-18 12:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-03-18 12:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 12:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4046 HTTP/1.1" 200 None +2025-03-18 12:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4046?force=True HTTP/1.1" 200 None +2025-03-18 12:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4047 HTTP/1.1" 200 None +2025-03-18 12:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4048 HTTP/1.1" 200 None +2025-03-18 12:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4048?force=True HTTP/1.1" 200 None +2025-03-18 12:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4047?force=True HTTP/1.1" 200 None +2025-03-18 12:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 12:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4049 HTTP/1.1" 200 None +2025-03-18 12:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4050?force=True HTTP/1.1" 200 None +2025-03-18 12:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4049?force=True HTTP/1.1" 200 None +2025-03-18 12:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 12:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 12:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 12:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4051 HTTP/1.1" 200 None +2025-03-18 12:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4052 HTTP/1.1" 200 None +2025-03-18 12:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4054 HTTP/1.1" 200 None +2025-03-18 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4055 HTTP/1.1" 200 None +2025-03-18 12:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4056 HTTP/1.1" 200 None +2025-03-18 12:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4057 HTTP/1.1" 200 None +2025-03-18 12:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4058 HTTP/1.1" 200 None +2025-03-18 12:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4059 HTTP/1.1" 200 None +2025-03-18 12:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4060 HTTP/1.1" 200 None +2025-03-18 12:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4061 HTTP/1.1" 200 None +2025-03-18 12:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4062 HTTP/1.1" 200 None +2025-03-18 12:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4063 HTTP/1.1" 200 None +2025-03-18 12:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4064 HTTP/1.1" 200 None +2025-03-18 12:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4065 HTTP/1.1" 200 None +2025-03-18 12:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4066 HTTP/1.1" 200 None +2025-03-18 12:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4068 HTTP/1.1" 200 None +2025-03-18 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4069 HTTP/1.1" 200 None +2025-03-18 12:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4070 HTTP/1.1" 200 None +2025-03-18 12:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4071 HTTP/1.1" 200 None +2025-03-18 12:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4072 HTTP/1.1" 200 None +2025-03-18 12:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4073 HTTP/1.1" 200 None +2025-03-18 12:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4074 HTTP/1.1" 200 None +2025-03-18 12:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4075 HTTP/1.1" 200 None +2025-03-18 12:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4076 HTTP/1.1" 200 None +2025-03-18 12:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 12:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 12:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 12:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 12:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4077 HTTP/1.1" 200 None +2025-03-18 13:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 13:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 13:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 13:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4036?force=true HTTP/1.1" 200 None +2025-03-18 13:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4035?force=true HTTP/1.1" 200 None +2025-03-18 13:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4034?force=true HTTP/1.1" 200 None +2025-03-18 13:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4033?force=true HTTP/1.1" 200 None +2025-03-18 13:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4032?force=true HTTP/1.1" 200 None +2025-03-18 13:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4031?force=true HTTP/1.1" 200 None +2025-03-18 13:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4030?force=true HTTP/1.1" 200 None +2025-03-18 13:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4029?force=true HTTP/1.1" 200 None +2025-03-18 13:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4028?force=true HTTP/1.1" 200 None +2025-03-18 13:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4027?force=true HTTP/1.1" 200 None +2025-03-18 13:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4026?force=true HTTP/1.1" 200 None +2025-03-18 13:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4025?force=true HTTP/1.1" 200 None +2025-03-18 13:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4024?force=true HTTP/1.1" 200 None +2025-03-18 13:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4023?force=true HTTP/1.1" 200 None +2025-03-18 13:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4022?force=true HTTP/1.1" 200 None +2025-03-18 13:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4021?force=true HTTP/1.1" 200 None +2025-03-18 13:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4020?force=true HTTP/1.1" 200 None +2025-03-18 13:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4019?force=true HTTP/1.1" 200 None +2025-03-18 13:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4018?force=true HTTP/1.1" 200 None +2025-03-18 13:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4017?force=true HTTP/1.1" 200 None +2025-03-18 13:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4016?force=true HTTP/1.1" 200 None +2025-03-18 13:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4015?force=true HTTP/1.1" 200 None +2025-03-18 13:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4014?force=true HTTP/1.1" 200 None +2025-03-18 13:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4013?force=true HTTP/1.1" 200 None +2025-03-18 13:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4012?force=true HTTP/1.1" 200 None +2025-03-18 13:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4011?force=true HTTP/1.1" 200 None +2025-03-18 13:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4010?force=true HTTP/1.1" 200 None +2025-03-18 13:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4009?force=true HTTP/1.1" 200 None +2025-03-18 13:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4008?force=true HTTP/1.1" 200 None +2025-03-18 13:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4007?force=true HTTP/1.1" 200 None +2025-03-18 13:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4006?force=true HTTP/1.1" 200 None +2025-03-18 13:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4005?force=true HTTP/1.1" 200 None +2025-03-18 13:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4004?force=true HTTP/1.1" 200 None +2025-03-18 13:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4003?force=true HTTP/1.1" 200 None +2025-03-18 13:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4002?force=true HTTP/1.1" 200 None +2025-03-18 13:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4001?force=true HTTP/1.1" 200 None +2025-03-18 13:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4000?force=true HTTP/1.1" 200 None +2025-03-18 13:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3999?force=true HTTP/1.1" 200 None +2025-03-18 13:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3998?force=true HTTP/1.1" 200 None +2025-03-18 13:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3997?force=true HTTP/1.1" 200 None +2025-03-18 13:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3996?force=true HTTP/1.1" 200 None +2025-03-18 13:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3995?force=true HTTP/1.1" 200 None +2025-03-18 13:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3994?force=true HTTP/1.1" 200 None +2025-03-18 13:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3993?force=true HTTP/1.1" 200 None +2025-03-18 13:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3992?force=true HTTP/1.1" 200 None +2025-03-18 13:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3991?force=true HTTP/1.1" 200 None +2025-03-18 13:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3990?force=true HTTP/1.1" 200 None +2025-03-18 13:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3989?force=true HTTP/1.1" 200 None +2025-03-18 13:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3988?force=true HTTP/1.1" 200 None +2025-03-18 13:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3987?force=true HTTP/1.1" 200 None +2025-03-18 13:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3986?force=true HTTP/1.1" 200 None +2025-03-18 13:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3985?force=true HTTP/1.1" 200 None +2025-03-18 13:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3984?force=true HTTP/1.1" 200 None +2025-03-18 13:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3983?force=true HTTP/1.1" 200 None +2025-03-18 13:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3982?force=true HTTP/1.1" 200 None +2025-03-18 13:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3981?force=true HTTP/1.1" 200 None +2025-03-18 13:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3980?force=true HTTP/1.1" 200 None +2025-03-18 13:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3979?force=true HTTP/1.1" 200 None +2025-03-18 13:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3978?force=true HTTP/1.1" 200 None +2025-03-18 13:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3977?force=true HTTP/1.1" 200 None +2025-03-18 13:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3976?force=true HTTP/1.1" 200 None +2025-03-18 13:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3975?force=true HTTP/1.1" 200 None +2025-03-18 13:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3974?force=true HTTP/1.1" 200 None +2025-03-18 13:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3973?force=true HTTP/1.1" 200 None +2025-03-18 13:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3972?force=true HTTP/1.1" 200 None +2025-03-18 13:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3971?force=true HTTP/1.1" 200 None +2025-03-18 13:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3970?force=true HTTP/1.1" 200 None +2025-03-18 13:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3969?force=true HTTP/1.1" 200 None +2025-03-18 13:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3968?force=true HTTP/1.1" 200 None +2025-03-18 13:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3967?force=true HTTP/1.1" 200 None +2025-03-18 13:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3966?force=true HTTP/1.1" 200 None +2025-03-18 13:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3965?force=true HTTP/1.1" 200 None +2025-03-18 13:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3964?force=true HTTP/1.1" 200 None +2025-03-18 13:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3963?force=true HTTP/1.1" 200 None +2025-03-18 13:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3962?force=true HTTP/1.1" 200 None +2025-03-18 13:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3961?force=true HTTP/1.1" 200 None +2025-03-18 13:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3960?force=true HTTP/1.1" 200 None +2025-03-18 13:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3959?force=true HTTP/1.1" 200 None +2025-03-18 13:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3958?force=true HTTP/1.1" 200 None +2025-03-18 13:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3957?force=true HTTP/1.1" 200 None +2025-03-18 13:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3956?force=true HTTP/1.1" 200 None +2025-03-18 13:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3955?force=true HTTP/1.1" 200 None +2025-03-18 13:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3954?force=true HTTP/1.1" 200 None +2025-03-18 13:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3953?force=true HTTP/1.1" 200 None +2025-03-18 13:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3952?force=true HTTP/1.1" 200 None +2025-03-18 13:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3951?force=true HTTP/1.1" 200 None +2025-03-18 13:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3950?force=true HTTP/1.1" 200 None +2025-03-18 13:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3949?force=true HTTP/1.1" 200 None +2025-03-18 13:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3948?force=true HTTP/1.1" 200 None +2025-03-18 13:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3947?force=true HTTP/1.1" 200 None +2025-03-18 13:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3946?force=true HTTP/1.1" 200 None +2025-03-18 13:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3945?force=true HTTP/1.1" 200 None +2025-03-18 13:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3944?force=true HTTP/1.1" 200 None +2025-03-18 13:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3943?force=true HTTP/1.1" 200 None +2025-03-18 13:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3942?force=true HTTP/1.1" 200 None +2025-03-18 13:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3941?force=true HTTP/1.1" 200 None +2025-03-18 13:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3940?force=true HTTP/1.1" 200 None +2025-03-18 13:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3939?force=true HTTP/1.1" 200 None +2025-03-18 13:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3938?force=true HTTP/1.1" 200 None +2025-03-18 13:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3937?force=true HTTP/1.1" 200 None +2025-03-18 13:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 13:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3936?force=true HTTP/1.1" 200 None +2025-03-18 13:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3935?force=true HTTP/1.1" 200 None +2025-03-18 14:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3934?force=true HTTP/1.1" 200 None +2025-03-18 14:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3933?force=true HTTP/1.1" 200 None +2025-03-18 14:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3932?force=true HTTP/1.1" 200 None +2025-03-18 14:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3931?force=true HTTP/1.1" 200 None +2025-03-18 14:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3930?force=true HTTP/1.1" 200 None +2025-03-18 14:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3929?force=true HTTP/1.1" 200 None +2025-03-18 14:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3928?force=true HTTP/1.1" 200 None +2025-03-18 14:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3927?force=true HTTP/1.1" 200 None +2025-03-18 14:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3926?force=true HTTP/1.1" 200 None +2025-03-18 14:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3925?force=true HTTP/1.1" 200 None +2025-03-18 14:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3924?force=true HTTP/1.1" 200 None +2025-03-18 14:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3923?force=true HTTP/1.1" 200 None +2025-03-18 14:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3922?force=true HTTP/1.1" 200 None +2025-03-18 14:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3921?force=true HTTP/1.1" 200 None +2025-03-18 14:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3920?force=true HTTP/1.1" 200 None +2025-03-18 14:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3919?force=true HTTP/1.1" 200 None +2025-03-18 14:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3918?force=true HTTP/1.1" 200 None +2025-03-18 14:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3917?force=true HTTP/1.1" 200 None +2025-03-18 14:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3916?force=true HTTP/1.1" 200 None +2025-03-18 14:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3915?force=true HTTP/1.1" 200 None +2025-03-18 14:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3914?force=true HTTP/1.1" 200 None +2025-03-18 14:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3913?force=true HTTP/1.1" 200 None +2025-03-18 14:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3912?force=true HTTP/1.1" 200 None +2025-03-18 14:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3911?force=true HTTP/1.1" 200 None +2025-03-18 14:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3910?force=true HTTP/1.1" 200 None +2025-03-18 14:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3909?force=true HTTP/1.1" 200 None +2025-03-18 14:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3908?force=true HTTP/1.1" 200 None +2025-03-18 14:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3907?force=true HTTP/1.1" 200 None +2025-03-18 14:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3906?force=true HTTP/1.1" 200 None +2025-03-18 14:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3905?force=true HTTP/1.1" 200 None +2025-03-18 14:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3904?force=true HTTP/1.1" 200 None +2025-03-18 14:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3903?force=true HTTP/1.1" 200 None +2025-03-18 14:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3902?force=true HTTP/1.1" 200 None +2025-03-18 14:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3901?force=true HTTP/1.1" 200 None +2025-03-18 14:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3900?force=true HTTP/1.1" 200 None +2025-03-18 14:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3899?force=true HTTP/1.1" 200 None +2025-03-18 14:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3898?force=true HTTP/1.1" 200 None +2025-03-18 14:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3897?force=true HTTP/1.1" 200 None +2025-03-18 14:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3896?force=true HTTP/1.1" 200 None +2025-03-18 14:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3895?force=true HTTP/1.1" 200 None +2025-03-18 14:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/3894?force=true HTTP/1.1" 200 None +2025-03-18 14:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/42?force=True HTTP/1.1" 200 None +2025-03-18 14:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/40?force=True HTTP/1.1" 200 None +2025-03-18 14:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/44?force=True HTTP/1.1" 200 None +2025-03-18 14:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/39?force=True HTTP/1.1" 200 None +2025-03-18 14:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/41?force=True HTTP/1.1" 200 None +2025-03-18 14:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/43?force=True HTTP/1.1" 200 None +2025-03-18 14:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4077?force=True HTTP/1.1" 200 None +2025-03-18 14:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4076?force=True HTTP/1.1" 200 None +2025-03-18 14:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4075?force=True HTTP/1.1" 200 None +2025-03-18 14:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4074?force=True HTTP/1.1" 200 None +2025-03-18 14:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4073?force=True HTTP/1.1" 200 None +2025-03-18 14:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4072?force=True HTTP/1.1" 200 None +2025-03-18 14:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4071?force=True HTTP/1.1" 200 None +2025-03-18 14:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4070?force=True HTTP/1.1" 200 None +2025-03-18 14:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4069?force=True HTTP/1.1" 200 None +2025-03-18 14:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4068?force=True HTTP/1.1" 200 None +2025-03-18 14:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4066?force=True HTTP/1.1" 200 None +2025-03-18 14:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4065?force=True HTTP/1.1" 200 None +2025-03-18 14:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4064?force=True HTTP/1.1" 200 None +2025-03-18 14:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4063?force=True HTTP/1.1" 200 None +2025-03-18 14:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4062?force=True HTTP/1.1" 200 None +2025-03-18 14:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4061?force=True HTTP/1.1" 200 None +2025-03-18 14:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4060?force=True HTTP/1.1" 200 None +2025-03-18 14:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4059?force=True HTTP/1.1" 200 None +2025-03-18 14:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4058?force=True HTTP/1.1" 200 None +2025-03-18 14:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4057?force=True HTTP/1.1" 200 None +2025-03-18 14:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4056?force=True HTTP/1.1" 200 None +2025-03-18 14:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4055?force=True HTTP/1.1" 200 None +2025-03-18 14:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4054?force=True HTTP/1.1" 200 None +2025-03-18 14:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4052?force=True HTTP/1.1" 200 None +2025-03-18 14:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4051?force=True HTTP/1.1" 200 None +2025-03-18 14:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/388?force=True HTTP/1.1" 200 None +2025-03-18 14:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/390?force=True HTTP/1.1" 200 None +2025-03-18 14:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-18 14:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/389?force=True HTTP/1.1" 200 None +2025-03-18 14:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/384?force=True HTTP/1.1" 200 None +2025-03-18 14:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/383?force=True HTTP/1.1" 200 None +2025-03-18 14:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/387?force=True HTTP/1.1" 200 None +2025-03-18 14:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/385?force=True HTTP/1.1" 200 None +2025-03-18 14:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/386?force=True HTTP/1.1" 200 None +2025-03-18 14:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4078 HTTP/1.1" 200 None +2025-03-18 14:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4079 HTTP/1.1" 200 None +2025-03-18 14:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4080 HTTP/1.1" 200 None +2025-03-18 14:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4081 HTTP/1.1" 200 None +2025-03-18 14:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4082 HTTP/1.1" 200 None +2025-03-18 14:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4083 HTTP/1.1" 200 None +2025-03-18 14:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4084 HTTP/1.1" 200 None +2025-03-18 14:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4085 HTTP/1.1" 200 None +2025-03-18 14:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4086 HTTP/1.1" 200 None +2025-03-18 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4087 HTTP/1.1" 200 None +2025-03-18 14:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4088 HTTP/1.1" 200 None +2025-03-18 14:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4089 HTTP/1.1" 200 None +2025-03-18 14:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4090 HTTP/1.1" 200 None +2025-03-18 14:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4091 HTTP/1.1" 200 None +2025-03-18 14:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4092 HTTP/1.1" 200 None +2025-03-18 14:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4093 HTTP/1.1" 200 None +2025-03-18 14:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4094 HTTP/1.1" 200 None +2025-03-18 14:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4095 HTTP/1.1" 200 None +2025-03-18 14:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4096 HTTP/1.1" 200 None +2025-03-18 14:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4097 HTTP/1.1" 200 None +2025-03-18 14:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4098 HTTP/1.1" 200 None +2025-03-18 14:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4099 HTTP/1.1" 200 None +2025-03-18 14:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4100 HTTP/1.1" 200 None +2025-03-18 14:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4101 HTTP/1.1" 200 None +2025-03-18 14:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4102 HTTP/1.1" 200 None +2025-03-18 14:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4103 HTTP/1.1" 200 None +2025-03-18 14:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4104 HTTP/1.1" 200 None +2025-03-18 14:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4105 HTTP/1.1" 200 None +2025-03-18 14:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4106 HTTP/1.1" 200 None +2025-03-18 14:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4107 HTTP/1.1" 200 None +2025-03-18 14:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4108 HTTP/1.1" 200 None +2025-03-18 14:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4109 HTTP/1.1" 200 None +2025-03-18 14:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4110 HTTP/1.1" 200 None +2025-03-18 14:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4111 HTTP/1.1" 200 None +2025-03-18 14:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4112 HTTP/1.1" 200 None +2025-03-18 14:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4113 HTTP/1.1" 200 None +2025-03-18 14:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4114 HTTP/1.1" 200 None +2025-03-18 14:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4115 HTTP/1.1" 200 None +2025-03-18 14:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4116 HTTP/1.1" 200 None +2025-03-18 14:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4117 HTTP/1.1" 200 None +2025-03-18 14:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4118 HTTP/1.1" 200 None +2025-03-18 14:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4119 HTTP/1.1" 200 None +2025-03-18 14:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4120 HTTP/1.1" 200 None +2025-03-18 14:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4121 HTTP/1.1" 200 None +2025-03-18 14:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4122 HTTP/1.1" 200 None +2025-03-18 14:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4123 HTTP/1.1" 200 None +2025-03-18 14:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4124 HTTP/1.1" 200 None +2025-03-18 14:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4125 HTTP/1.1" 200 None +2025-03-18 14:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4126 HTTP/1.1" 200 None +2025-03-18 14:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4127 HTTP/1.1" 200 None +2025-03-18 14:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4128 HTTP/1.1" 200 None +2025-03-18 14:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4129 HTTP/1.1" 200 None +2025-03-18 14:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4130 HTTP/1.1" 200 None +2025-03-18 14:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4131 HTTP/1.1" 200 None +2025-03-18 14:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4132 HTTP/1.1" 200 None +2025-03-18 14:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4133 HTTP/1.1" 200 None +2025-03-18 14:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4134 HTTP/1.1" 200 None +2025-03-18 14:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4135 HTTP/1.1" 200 None +2025-03-18 14:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4136 HTTP/1.1" 200 None +2025-03-18 14:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4137 HTTP/1.1" 200 None +2025-03-18 14:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4138 HTTP/1.1" 200 None +2025-03-18 14:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4139 HTTP/1.1" 200 None +2025-03-18 14:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4140 HTTP/1.1" 200 None +2025-03-18 14:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4141 HTTP/1.1" 200 None +2025-03-18 14:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4142 HTTP/1.1" 200 None +2025-03-18 14:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4143 HTTP/1.1" 200 None +2025-03-18 14:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4144 HTTP/1.1" 200 None +2025-03-18 14:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4145 HTTP/1.1" 200 None +2025-03-18 14:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4146 HTTP/1.1" 200 None +2025-03-18 14:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4147 HTTP/1.1" 200 None +2025-03-18 14:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4148 HTTP/1.1" 200 None +2025-03-18 14:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4149 HTTP/1.1" 200 None +2025-03-18 14:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4150 HTTP/1.1" 200 None +2025-03-18 14:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4151 HTTP/1.1" 200 None +2025-03-18 14:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4152 HTTP/1.1" 200 None +2025-03-18 14:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4153 HTTP/1.1" 200 None +2025-03-18 14:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4154 HTTP/1.1" 200 None +2025-03-18 14:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4155 HTTP/1.1" 200 None +2025-03-18 14:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4156 HTTP/1.1" 200 None +2025-03-18 14:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4157 HTTP/1.1" 200 None +2025-03-18 14:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4158 HTTP/1.1" 200 None +2025-03-18 14:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4159 HTTP/1.1" 200 None +2025-03-18 14:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4160 HTTP/1.1" 200 None +2025-03-18 14:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4161 HTTP/1.1" 200 None +2025-03-18 14:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4162 HTTP/1.1" 200 None +2025-03-18 14:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4163 HTTP/1.1" 200 None +2025-03-18 14:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4164 HTTP/1.1" 200 None +2025-03-18 14:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4165 HTTP/1.1" 200 None +2025-03-18 14:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4166 HTTP/1.1" 200 None +2025-03-18 14:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4167 HTTP/1.1" 200 None +2025-03-18 14:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4168 HTTP/1.1" 200 None +2025-03-18 14:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4169 HTTP/1.1" 200 None +2025-03-18 14:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4170 HTTP/1.1" 200 None +2025-03-18 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4171 HTTP/1.1" 200 None +2025-03-18 14:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4172 HTTP/1.1" 200 None +2025-03-18 14:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4173 HTTP/1.1" 200 None +2025-03-18 14:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4174 HTTP/1.1" 200 None +2025-03-18 14:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4175 HTTP/1.1" 200 None +2025-03-18 14:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4176 HTTP/1.1" 200 None +2025-03-18 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4177 HTTP/1.1" 200 None +2025-03-18 14:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-18 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4178 HTTP/1.1" 200 None +2025-03-18 14:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4179 HTTP/1.1" 200 None +2025-03-18 14:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4180 HTTP/1.1" 200 None +2025-03-18 14:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4181 HTTP/1.1" 200 None +2025-03-18 14:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4182 HTTP/1.1" 200 None +2025-03-18 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4183 HTTP/1.1" 200 None +2025-03-18 14:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4184 HTTP/1.1" 200 None +2025-03-18 14:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4185 HTTP/1.1" 200 None +2025-03-18 14:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4186 HTTP/1.1" 200 None +2025-03-18 14:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4187 HTTP/1.1" 200 None +2025-03-18 14:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4188 HTTP/1.1" 200 None +2025-03-18 14:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4189 HTTP/1.1" 200 None +2025-03-18 14:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4190 HTTP/1.1" 200 None +2025-03-18 14:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4191 HTTP/1.1" 200 None +2025-03-18 14:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4192 HTTP/1.1" 200 None +2025-03-18 14:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4193 HTTP/1.1" 200 None +2025-03-18 14:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4194 HTTP/1.1" 200 None +2025-03-18 14:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4195 HTTP/1.1" 200 None +2025-03-18 14:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-18 14:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4196 HTTP/1.1" 200 None +2025-03-18 14:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 502 157 +2025-03-18 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4081 HTTP/1.1" 200 None +2025-03-18 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/399 HTTP/1.1" 200 None +2025-03-18 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/400 HTTP/1.1" 200 None +2025-03-18 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4078 HTTP/1.1" 200 None +2025-03-18 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/400 HTTP/1.1" 200 None +2025-03-18 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4108 HTTP/1.1" 200 None +2025-03-18 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/401 HTTP/1.1" 200 None +2025-03-18 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-18 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/402 HTTP/1.1" 400 None +2025-03-18 14:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-18 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/403 HTTP/1.1" 400 None +2025-03-18 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4124 HTTP/1.1" 200 None +2025-03-18 14:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/404 HTTP/1.1" 200 None +2025-03-18 14:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-18 14:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/405 HTTP/1.1" 400 None +2025-03-18 14:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-18 14:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4130 HTTP/1.1" 200 None +2025-03-18 14:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/406 HTTP/1.1" 200 None +2025-03-18 14:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-18 14:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-18 14:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-18 14:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-18 14:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-18 14:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-18 14:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/48/terms HTTP/1.1" 201 None +2025-03-18 14:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/46/terms HTTP/1.1" 201 None +2025-03-18 14:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/50/terms HTTP/1.1" 201 None +2025-03-18 14:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/50/terms HTTP/1.1" 201 None +2025-03-18 14:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/50/terms HTTP/1.1" 201 None +2025-03-18 14:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/50/terms HTTP/1.1" 400 None +2025-03-18 14:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/45/terms HTTP/1.1" 201 None +2025-03-18 14:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/47/terms HTTP/1.1" 201 None +2025-03-18 14:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/49/terms HTTP/1.1" 201 None +2025-03-18 14:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4197 HTTP/1.1" 200 None +2025-03-18 14:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4198 HTTP/1.1" 200 None +2025-03-18 14:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4199 HTTP/1.1" 200 None +2025-03-18 14:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4200 HTTP/1.1" 200 None +2025-03-18 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4201 HTTP/1.1" 200 None +2025-03-18 14:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4202 HTTP/1.1" 200 None +2025-03-18 14:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4203 HTTP/1.1" 200 None +2025-03-18 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4204 HTTP/1.1" 200 None +2025-03-18 14:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4205 HTTP/1.1" 200 None +2025-03-18 14:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4206 HTTP/1.1" 200 None +2025-03-18 14:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4207 HTTP/1.1" 200 None +2025-03-18 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4208 HTTP/1.1" 200 None +2025-03-18 14:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4209 HTTP/1.1" 200 None +2025-03-18 14:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4210 HTTP/1.1" 200 None +2025-03-18 14:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 502 157 +2025-03-18 14:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 502 157 +2025-03-18 14:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 502 157 +2025-03-18 14:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4210 HTTP/1.1" 502 157 +2025-03-18 14:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 502 157 +2025-03-18 14:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 502 157 +2025-03-18 14:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4210?force=True HTTP/1.1" 200 None +2025-03-18 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4209?force=True HTTP/1.1" 200 None +2025-03-18 14:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4208?force=True HTTP/1.1" 200 None +2025-03-18 14:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4207?force=True HTTP/1.1" 200 None +2025-03-18 14:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4206?force=True HTTP/1.1" 200 None +2025-03-18 14:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4205?force=True HTTP/1.1" 200 None +2025-03-18 14:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4204?force=True HTTP/1.1" 200 None +2025-03-18 14:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4203?force=True HTTP/1.1" 200 None +2025-03-18 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4202?force=True HTTP/1.1" 200 None +2025-03-18 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4201?force=True HTTP/1.1" 200 None +2025-03-18 14:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4200?force=True HTTP/1.1" 200 None +2025-03-18 14:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4199?force=True HTTP/1.1" 200 None +2025-03-18 14:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4198?force=True HTTP/1.1" 200 None +2025-03-18 14:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4197?force=True HTTP/1.1" 200 None +2025-03-18 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-18 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-18 14:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-18 14:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4211 HTTP/1.1" 200 None +2025-03-18 14:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4212 HTTP/1.1" 200 None +2025-03-18 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4213 HTTP/1.1" 200 None +2025-03-18 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4214 HTTP/1.1" 200 None +2025-03-18 14:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4215 HTTP/1.1" 200 None +2025-03-18 14:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4216 HTTP/1.1" 200 None +2025-03-18 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4217 HTTP/1.1" 200 None +2025-03-18 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4218 HTTP/1.1" 200 None +2025-03-18 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4219 HTTP/1.1" 200 None +2025-03-18 14:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4220 HTTP/1.1" 200 None +2025-03-18 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4221 HTTP/1.1" 200 None +2025-03-18 14:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4222 HTTP/1.1" 200 None +2025-03-18 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4223 HTTP/1.1" 200 None +2025-03-18 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 14:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 14:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 14:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4224 HTTP/1.1" 200 None +2025-03-18 15:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4225 HTTP/1.1" 200 None +2025-03-18 15:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4227 HTTP/1.1" 200 None +2025-03-18 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4228 HTTP/1.1" 200 None +2025-03-18 15:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4229 HTTP/1.1" 200 None +2025-03-18 15:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4230 HTTP/1.1" 200 None +2025-03-18 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4231 HTTP/1.1" 200 None +2025-03-18 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4232 HTTP/1.1" 200 None +2025-03-18 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4238 HTTP/1.1" 200 None +2025-03-18 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4239 HTTP/1.1" 200 None +2025-03-18 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4240 HTTP/1.1" 200 None +2025-03-18 15:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-18 15:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-18 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-18 15:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-18 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4241 HTTP/1.1" 200 None +2025-03-19 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 15:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4241?force=True HTTP/1.1" 200 None +2025-03-19 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4240?force=True HTTP/1.1" 200 None +2025-03-19 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4239?force=True HTTP/1.1" 200 None +2025-03-19 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4238?force=True HTTP/1.1" 200 None +2025-03-19 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4232?force=True HTTP/1.1" 200 None +2025-03-19 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4231?force=True HTTP/1.1" 200 None +2025-03-19 15:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4230?force=True HTTP/1.1" 200 None +2025-03-19 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4229?force=True HTTP/1.1" 200 None +2025-03-19 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4228?force=True HTTP/1.1" 200 None +2025-03-19 15:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4227?force=True HTTP/1.1" 200 None +2025-03-19 15:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4225?force=True HTTP/1.1" 200 None +2025-03-19 15:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4224?force=True HTTP/1.1" 200 None +2025-03-19 15:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4223?force=True HTTP/1.1" 200 None +2025-03-19 15:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4222?force=True HTTP/1.1" 200 None +2025-03-19 15:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4221?force=True HTTP/1.1" 200 None +2025-03-19 15:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4220?force=True HTTP/1.1" 200 None +2025-03-19 15:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4219?force=True HTTP/1.1" 200 None +2025-03-19 15:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4218?force=True HTTP/1.1" 200 None +2025-03-19 15:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4217?force=True HTTP/1.1" 200 None +2025-03-19 15:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4216?force=True HTTP/1.1" 200 None +2025-03-19 15:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4215?force=True HTTP/1.1" 200 None +2025-03-19 15:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4214?force=True HTTP/1.1" 200 None +2025-03-19 15:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4213?force=True HTTP/1.1" 200 None +2025-03-19 15:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4212?force=True HTTP/1.1" 200 None +2025-03-19 15:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4211?force=True HTTP/1.1" 200 None +2025-03-19 15:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 15:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 15:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 15:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 15:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 15:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4273 HTTP/1.1" 200 None +2025-03-19 15:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4274 HTTP/1.1" 200 None +2025-03-19 15:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4275 HTTP/1.1" 200 None +2025-03-19 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4276 HTTP/1.1" 200 None +2025-03-19 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4277 HTTP/1.1" 200 None +2025-03-19 15:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4278 HTTP/1.1" 200 None +2025-03-19 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4279 HTTP/1.1" 200 None +2025-03-19 15:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4280 HTTP/1.1" 200 None +2025-03-19 15:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4283 HTTP/1.1" 200 None +2025-03-19 15:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4285 HTTP/1.1" 200 None +2025-03-19 15:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4290 HTTP/1.1" 200 None +2025-03-19 15:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4292 HTTP/1.1" 200 None +2025-03-19 15:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4295 HTTP/1.1" 200 None +2025-03-19 15:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4296 HTTP/1.1" 200 None +2025-03-19 15:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4299 HTTP/1.1" 200 None +2025-03-19 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4303 HTTP/1.1" 200 None +2025-03-19 15:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4306 HTTP/1.1" 200 None +2025-03-19 15:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4307 HTTP/1.1" 200 None +2025-03-19 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4308 HTTP/1.1" 200 None +2025-03-19 15:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4309 HTTP/1.1" 200 None +2025-03-19 15:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4310 HTTP/1.1" 200 None +2025-03-19 15:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4311 HTTP/1.1" 200 None +2025-03-19 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4312 HTTP/1.1" 200 None +2025-03-19 15:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 15:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 15:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 15:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 15:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4313 HTTP/1.1" 200 None +2025-03-19 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4314 HTTP/1.1" 200 None +2025-03-19 16:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4315 HTTP/1.1" 200 None +2025-03-19 16:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 400 None +2025-03-19 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4318 HTTP/1.1" 200 None +2025-03-19 16:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 400 None +2025-03-19 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4319 HTTP/1.1" 200 None +2025-03-19 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 400 None +2025-03-19 16:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4320 HTTP/1.1" 200 None +2025-03-19 16:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 400 None +2025-03-19 16:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4321 HTTP/1.1" 200 None +2025-03-19 16:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 400 None +2025-03-19 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4322 HTTP/1.1" 200 None +2025-03-19 16:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 400 None +2025-03-19 16:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4323 HTTP/1.1" 200 None +2025-03-19 16:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 400 None +2025-03-19 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4324 HTTP/1.1" 200 None +2025-03-19 16:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 400 None +2025-03-19 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4325 HTTP/1.1" 200 None +2025-03-19 16:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 400 None +2025-03-19 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4326 HTTP/1.1" 200 None +2025-03-19 16:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 400 None +2025-03-19 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4327 HTTP/1.1" 200 None +2025-03-19 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-19 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-19 16:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 400 None +2025-03-19 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4328 HTTP/1.1" 200 None +2025-03-19 16:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 400 None +2025-03-19 16:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4329 HTTP/1.1" 200 None +2025-03-19 16:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 400 None +2025-03-19 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4330 HTTP/1.1" 200 None +2025-03-19 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 400 None +2025-03-19 16:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4331 HTTP/1.1" 200 None +2025-03-19 16:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 16:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 16:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 400 None +2025-03-19 17:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4332 HTTP/1.1" 200 None +2025-03-19 17:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 17:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 400 None +2025-03-19 17:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4333 HTTP/1.1" 200 None +2025-03-19 17:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-19 17:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 400 None +2025-03-19 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-19 17:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4334 HTTP/1.1" 200 None +2025-03-19 17:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 400 None +2025-03-19 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 400 None +2025-03-19 17:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-03-19 17:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-19 17:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-19 17:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-19 17:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-19 17:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-03-21 12:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 12:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 12:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 12:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 12:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4196?force=true HTTP/1.1" 200 None +2025-03-21 12:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4195?force=true HTTP/1.1" 200 None +2025-03-21 12:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4194?force=true HTTP/1.1" 200 None +2025-03-21 12:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4193?force=true HTTP/1.1" 200 None +2025-03-21 12:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4192?force=true HTTP/1.1" 200 None +2025-03-21 12:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4191?force=true HTTP/1.1" 200 None +2025-03-21 12:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4190?force=true HTTP/1.1" 200 None +2025-03-21 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4189?force=true HTTP/1.1" 200 None +2025-03-21 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4188?force=true HTTP/1.1" 200 None +2025-03-21 12:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4187?force=true HTTP/1.1" 200 None +2025-03-21 12:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4186?force=true HTTP/1.1" 200 None +2025-03-21 12:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4185?force=true HTTP/1.1" 200 None +2025-03-21 12:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4184?force=true HTTP/1.1" 200 None +2025-03-21 12:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4183?force=true HTTP/1.1" 200 None +2025-03-21 12:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4182?force=true HTTP/1.1" 200 None +2025-03-21 12:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4181?force=true HTTP/1.1" 200 None +2025-03-21 12:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4180?force=true HTTP/1.1" 200 None +2025-03-21 12:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4179?force=true HTTP/1.1" 200 None +2025-03-21 12:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4178?force=true HTTP/1.1" 200 None +2025-03-21 12:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4177?force=true HTTP/1.1" 200 None +2025-03-21 12:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4176?force=true HTTP/1.1" 200 None +2025-03-21 12:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4175?force=true HTTP/1.1" 200 None +2025-03-21 12:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4174?force=true HTTP/1.1" 200 None +2025-03-21 12:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4173?force=true HTTP/1.1" 200 None +2025-03-21 12:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4172?force=true HTTP/1.1" 200 None +2025-03-21 12:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4171?force=true HTTP/1.1" 200 None +2025-03-21 12:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4170?force=true HTTP/1.1" 200 None +2025-03-21 12:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4169?force=true HTTP/1.1" 200 None +2025-03-21 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4168?force=true HTTP/1.1" 200 None +2025-03-21 12:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4167?force=true HTTP/1.1" 200 None +2025-03-21 12:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4166?force=true HTTP/1.1" 200 None +2025-03-21 12:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4165?force=true HTTP/1.1" 200 None +2025-03-21 12:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4164?force=true HTTP/1.1" 200 None +2025-03-21 12:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4163?force=true HTTP/1.1" 200 None +2025-03-21 12:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4162?force=true HTTP/1.1" 200 None +2025-03-21 12:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4161?force=true HTTP/1.1" 200 None +2025-03-21 12:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4160?force=true HTTP/1.1" 200 None +2025-03-21 12:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4159?force=true HTTP/1.1" 200 None +2025-03-21 12:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4158?force=true HTTP/1.1" 200 None +2025-03-21 12:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4157?force=true HTTP/1.1" 200 None +2025-03-21 12:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4156?force=true HTTP/1.1" 200 None +2025-03-21 12:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4155?force=true HTTP/1.1" 200 None +2025-03-21 12:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4154?force=true HTTP/1.1" 200 None +2025-03-21 12:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4153?force=true HTTP/1.1" 200 None +2025-03-21 12:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4152?force=true HTTP/1.1" 200 None +2025-03-21 12:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4151?force=true HTTP/1.1" 200 None +2025-03-21 12:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4150?force=true HTTP/1.1" 200 None +2025-03-21 12:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4149?force=true HTTP/1.1" 200 None +2025-03-21 12:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4148?force=true HTTP/1.1" 200 None +2025-03-21 12:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4147?force=true HTTP/1.1" 200 None +2025-03-21 12:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4146?force=true HTTP/1.1" 200 None +2025-03-21 12:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4145?force=true HTTP/1.1" 200 None +2025-03-21 12:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4144?force=true HTTP/1.1" 200 None +2025-03-21 12:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4143?force=true HTTP/1.1" 200 None +2025-03-21 12:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4142?force=true HTTP/1.1" 200 None +2025-03-21 12:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4141?force=true HTTP/1.1" 200 None +2025-03-21 12:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4140?force=true HTTP/1.1" 200 None +2025-03-21 12:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4139?force=true HTTP/1.1" 200 None +2025-03-21 12:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4138?force=true HTTP/1.1" 200 None +2025-03-21 12:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4137?force=true HTTP/1.1" 200 None +2025-03-21 12:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4136?force=true HTTP/1.1" 200 None +2025-03-21 12:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4135?force=true HTTP/1.1" 200 None +2025-03-21 12:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4134?force=true HTTP/1.1" 200 None +2025-03-21 12:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4133?force=true HTTP/1.1" 200 None +2025-03-21 12:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4132?force=true HTTP/1.1" 200 None +2025-03-21 12:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4131?force=true HTTP/1.1" 200 None +2025-03-21 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4130?force=true HTTP/1.1" 200 None +2025-03-21 12:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4129?force=true HTTP/1.1" 200 None +2025-03-21 12:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4128?force=true HTTP/1.1" 200 None +2025-03-21 12:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4127?force=true HTTP/1.1" 200 None +2025-03-21 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4126?force=true HTTP/1.1" 200 None +2025-03-21 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4125?force=true HTTP/1.1" 200 None +2025-03-21 12:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4124?force=true HTTP/1.1" 200 None +2025-03-21 12:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4123?force=true HTTP/1.1" 200 None +2025-03-21 12:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4122?force=true HTTP/1.1" 200 None +2025-03-21 12:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4121?force=true HTTP/1.1" 200 None +2025-03-21 12:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4120?force=true HTTP/1.1" 200 None +2025-03-21 12:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4119?force=true HTTP/1.1" 200 None +2025-03-21 12:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4118?force=true HTTP/1.1" 200 None +2025-03-21 12:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4117?force=true HTTP/1.1" 200 None +2025-03-21 12:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4116?force=true HTTP/1.1" 200 None +2025-03-21 12:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4115?force=true HTTP/1.1" 200 None +2025-03-21 12:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4114?force=true HTTP/1.1" 200 None +2025-03-21 12:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4113?force=true HTTP/1.1" 200 None +2025-03-21 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4112?force=true HTTP/1.1" 200 None +2025-03-21 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4111?force=true HTTP/1.1" 200 None +2025-03-21 12:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4110?force=true HTTP/1.1" 200 None +2025-03-21 12:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4109?force=true HTTP/1.1" 200 None +2025-03-21 12:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4108?force=true HTTP/1.1" 200 None +2025-03-21 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4107?force=true HTTP/1.1" 200 None +2025-03-21 12:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4106?force=true HTTP/1.1" 200 None +2025-03-21 12:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4105?force=true HTTP/1.1" 200 None +2025-03-21 12:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4104?force=true HTTP/1.1" 200 None +2025-03-21 12:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4103?force=true HTTP/1.1" 200 None +2025-03-21 12:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4102?force=true HTTP/1.1" 200 None +2025-03-21 12:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4101?force=true HTTP/1.1" 200 None +2025-03-21 12:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4100?force=true HTTP/1.1" 200 None +2025-03-21 12:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4099?force=true HTTP/1.1" 200 None +2025-03-21 12:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4098?force=true HTTP/1.1" 200 None +2025-03-21 12:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4097?force=true HTTP/1.1" 200 None +2025-03-21 12:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4096?force=true HTTP/1.1" 200 None +2025-03-21 12:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4095?force=true HTTP/1.1" 200 None +2025-03-21 12:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4094?force=true HTTP/1.1" 200 None +2025-03-21 12:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4093?force=true HTTP/1.1" 200 None +2025-03-21 12:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4092?force=true HTTP/1.1" 200 None +2025-03-21 12:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4091?force=true HTTP/1.1" 200 None +2025-03-21 12:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4090?force=true HTTP/1.1" 200 None +2025-03-21 12:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4089?force=true HTTP/1.1" 200 None +2025-03-21 12:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4088?force=true HTTP/1.1" 200 None +2025-03-21 12:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4087?force=true HTTP/1.1" 200 None +2025-03-21 12:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4086?force=true HTTP/1.1" 200 None +2025-03-21 12:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4085?force=true HTTP/1.1" 200 None +2025-03-21 12:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4084?force=true HTTP/1.1" 200 None +2025-03-21 12:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4083?force=true HTTP/1.1" 200 None +2025-03-21 12:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4082?force=true HTTP/1.1" 200 None +2025-03-21 12:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4081?force=true HTTP/1.1" 200 None +2025-03-21 12:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4080?force=true HTTP/1.1" 200 None +2025-03-21 12:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4079?force=true HTTP/1.1" 200 None +2025-03-21 12:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4078?force=true HTTP/1.1" 200 None +2025-03-21 12:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/48?force=True HTTP/1.1" 200 None +2025-03-21 12:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/46?force=True HTTP/1.1" 200 None +2025-03-21 12:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/50?force=True HTTP/1.1" 200 None +2025-03-21 12:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/45?force=True HTTP/1.1" 200 None +2025-03-21 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/47?force=True HTTP/1.1" 200 None +2025-03-21 12:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/49?force=True HTTP/1.1" 200 None +2025-03-21 12:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 12:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4334?force=True HTTP/1.1" 200 None +2025-03-21 12:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4333?force=True HTTP/1.1" 200 None +2025-03-21 12:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4332?force=True HTTP/1.1" 200 None +2025-03-21 12:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4331?force=True HTTP/1.1" 200 None +2025-03-21 12:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4330?force=True HTTP/1.1" 200 None +2025-03-21 12:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4329?force=True HTTP/1.1" 200 None +2025-03-21 12:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4328?force=True HTTP/1.1" 200 None +2025-03-21 12:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4327?force=True HTTP/1.1" 200 None +2025-03-21 12:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4326?force=True HTTP/1.1" 200 None +2025-03-21 12:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4325?force=True HTTP/1.1" 200 None +2025-03-21 12:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4324?force=True HTTP/1.1" 200 None +2025-03-21 12:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4323?force=True HTTP/1.1" 200 None +2025-03-21 12:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4322?force=True HTTP/1.1" 200 None +2025-03-21 12:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4321?force=True HTTP/1.1" 200 None +2025-03-21 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4320?force=True HTTP/1.1" 200 None +2025-03-21 12:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4319?force=True HTTP/1.1" 200 None +2025-03-21 12:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4318?force=True HTTP/1.1" 200 None +2025-03-21 12:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4315?force=True HTTP/1.1" 200 None +2025-03-21 12:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4314?force=True HTTP/1.1" 200 None +2025-03-21 12:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4313?force=True HTTP/1.1" 200 None +2025-03-21 12:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4312?force=True HTTP/1.1" 200 None +2025-03-21 12:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4311?force=True HTTP/1.1" 200 None +2025-03-21 12:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4310?force=True HTTP/1.1" 200 None +2025-03-21 12:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4309?force=True HTTP/1.1" 200 None +2025-03-21 12:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4308?force=True HTTP/1.1" 200 None +2025-03-21 12:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4307?force=True HTTP/1.1" 200 None +2025-03-21 12:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4306?force=True HTTP/1.1" 200 None +2025-03-21 12:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4303?force=True HTTP/1.1" 200 None +2025-03-21 12:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4299?force=True HTTP/1.1" 200 None +2025-03-21 12:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4296?force=True HTTP/1.1" 200 None +2025-03-21 12:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4295?force=True HTTP/1.1" 200 None +2025-03-21 12:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4292?force=True HTTP/1.1" 200 None +2025-03-21 12:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4290?force=True HTTP/1.1" 200 None +2025-03-21 12:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4285?force=True HTTP/1.1" 200 None +2025-03-21 12:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4283?force=True HTTP/1.1" 200 None +2025-03-21 12:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4280?force=True HTTP/1.1" 200 None +2025-03-21 12:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4279?force=True HTTP/1.1" 200 None +2025-03-21 12:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4278?force=True HTTP/1.1" 200 None +2025-03-21 12:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4277?force=True HTTP/1.1" 200 None +2025-03-21 12:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4276?force=True HTTP/1.1" 200 None +2025-03-21 12:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4275?force=True HTTP/1.1" 200 None +2025-03-21 12:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4274?force=True HTTP/1.1" 200 None +2025-03-21 12:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4273?force=True HTTP/1.1" 200 None +2025-03-21 12:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/404?force=True HTTP/1.1" 200 None +2025-03-21 12:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/406?force=True HTTP/1.1" 200 None +2025-03-21 12:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-21 12:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/405?force=True HTTP/1.1" 200 None +2025-03-21 12:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/400?force=True HTTP/1.1" 200 None +2025-03-21 12:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/399?force=True HTTP/1.1" 200 None +2025-03-21 12:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/403?force=True HTTP/1.1" 200 None +2025-03-21 12:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/401?force=True HTTP/1.1" 200 None +2025-03-21 12:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/402?force=True HTTP/1.1" 200 None +2025-03-21 12:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4340 HTTP/1.1" 200 None +2025-03-21 12:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4341 HTTP/1.1" 200 None +2025-03-21 12:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4342 HTTP/1.1" 200 None +2025-03-21 12:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4343 HTTP/1.1" 200 None +2025-03-21 12:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4344 HTTP/1.1" 200 None +2025-03-21 12:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4345 HTTP/1.1" 200 None +2025-03-21 12:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4346 HTTP/1.1" 200 None +2025-03-21 12:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4347 HTTP/1.1" 200 None +2025-03-21 12:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4348 HTTP/1.1" 200 None +2025-03-21 12:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4349 HTTP/1.1" 200 None +2025-03-21 12:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4350 HTTP/1.1" 200 None +2025-03-21 12:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4351 HTTP/1.1" 200 None +2025-03-21 12:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4352 HTTP/1.1" 200 None +2025-03-21 12:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4353 HTTP/1.1" 200 None +2025-03-21 12:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4354 HTTP/1.1" 200 None +2025-03-21 12:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4355 HTTP/1.1" 200 None +2025-03-21 12:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4356 HTTP/1.1" 200 None +2025-03-21 12:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4357 HTTP/1.1" 200 None +2025-03-21 12:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4358 HTTP/1.1" 200 None +2025-03-21 12:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4359 HTTP/1.1" 200 None +2025-03-21 12:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4360 HTTP/1.1" 200 None +2025-03-21 12:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4361 HTTP/1.1" 200 None +2025-03-21 12:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4362 HTTP/1.1" 200 None +2025-03-21 12:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4363 HTTP/1.1" 200 None +2025-03-21 12:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4364 HTTP/1.1" 200 None +2025-03-21 12:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4365 HTTP/1.1" 200 None +2025-03-21 12:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4366 HTTP/1.1" 200 None +2025-03-21 12:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4367 HTTP/1.1" 200 None +2025-03-21 12:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4368 HTTP/1.1" 200 None +2025-03-21 12:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4369 HTTP/1.1" 200 None +2025-03-21 12:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4370 HTTP/1.1" 200 None +2025-03-21 12:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4371 HTTP/1.1" 200 None +2025-03-21 12:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4372 HTTP/1.1" 200 None +2025-03-21 12:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4373 HTTP/1.1" 200 None +2025-03-21 12:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4374 HTTP/1.1" 200 None +2025-03-21 12:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4375 HTTP/1.1" 200 None +2025-03-21 12:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4376 HTTP/1.1" 200 None +2025-03-21 12:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4377 HTTP/1.1" 200 None +2025-03-21 12:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4378 HTTP/1.1" 200 None +2025-03-21 12:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4379 HTTP/1.1" 200 None +2025-03-21 12:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4380 HTTP/1.1" 200 None +2025-03-21 12:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4381 HTTP/1.1" 200 None +2025-03-21 12:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4382 HTTP/1.1" 200 None +2025-03-21 12:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4383 HTTP/1.1" 200 None +2025-03-21 12:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4384 HTTP/1.1" 200 None +2025-03-21 12:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4385 HTTP/1.1" 200 None +2025-03-21 12:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4386 HTTP/1.1" 200 None +2025-03-21 12:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4387 HTTP/1.1" 200 None +2025-03-21 12:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4388 HTTP/1.1" 200 None +2025-03-21 12:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4389 HTTP/1.1" 200 None +2025-03-21 12:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4390 HTTP/1.1" 200 None +2025-03-21 12:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4391 HTTP/1.1" 200 None +2025-03-21 12:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4392 HTTP/1.1" 200 None +2025-03-21 12:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4393 HTTP/1.1" 200 None +2025-03-21 12:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4394 HTTP/1.1" 200 None +2025-03-21 12:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4395 HTTP/1.1" 200 None +2025-03-21 12:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4396 HTTP/1.1" 200 None +2025-03-21 12:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4397 HTTP/1.1" 200 None +2025-03-21 12:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4398 HTTP/1.1" 200 None +2025-03-21 12:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4399 HTTP/1.1" 200 None +2025-03-21 12:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4400 HTTP/1.1" 200 None +2025-03-21 12:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4401 HTTP/1.1" 200 None +2025-03-21 12:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4402 HTTP/1.1" 200 None +2025-03-21 12:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4403 HTTP/1.1" 200 None +2025-03-21 12:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4404 HTTP/1.1" 200 None +2025-03-21 12:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4405 HTTP/1.1" 200 None +2025-03-21 12:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4406 HTTP/1.1" 200 None +2025-03-21 12:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4407 HTTP/1.1" 200 None +2025-03-21 12:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4408 HTTP/1.1" 200 None +2025-03-21 12:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4409 HTTP/1.1" 200 None +2025-03-21 12:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4410 HTTP/1.1" 200 None +2025-03-21 12:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4411 HTTP/1.1" 200 None +2025-03-21 12:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4412 HTTP/1.1" 200 None +2025-03-21 12:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4413 HTTP/1.1" 200 None +2025-03-21 12:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4414 HTTP/1.1" 200 None +2025-03-21 12:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4415 HTTP/1.1" 200 None +2025-03-21 12:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4416 HTTP/1.1" 200 None +2025-03-21 12:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4417 HTTP/1.1" 200 None +2025-03-21 12:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4418 HTTP/1.1" 200 None +2025-03-21 12:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4419 HTTP/1.1" 200 None +2025-03-21 12:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4420 HTTP/1.1" 200 None +2025-03-21 12:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4421 HTTP/1.1" 200 None +2025-03-21 12:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4422 HTTP/1.1" 200 None +2025-03-21 12:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4423 HTTP/1.1" 200 None +2025-03-21 12:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4423?force=true HTTP/1.1" 200 None +2025-03-21 12:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4422?force=true HTTP/1.1" 200 None +2025-03-21 12:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4421?force=true HTTP/1.1" 200 None +2025-03-21 12:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4420?force=true HTTP/1.1" 200 None +2025-03-21 12:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4419?force=true HTTP/1.1" 200 None +2025-03-21 12:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4418?force=true HTTP/1.1" 200 None +2025-03-21 12:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4417?force=true HTTP/1.1" 200 None +2025-03-21 12:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4416?force=true HTTP/1.1" 200 None +2025-03-21 12:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4415?force=true HTTP/1.1" 200 None +2025-03-21 12:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4414?force=true HTTP/1.1" 200 None +2025-03-21 12:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4413?force=true HTTP/1.1" 200 None +2025-03-21 12:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4412?force=true HTTP/1.1" 200 None +2025-03-21 12:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4411?force=true HTTP/1.1" 200 None +2025-03-21 12:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4410?force=true HTTP/1.1" 200 None +2025-03-21 12:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4409?force=true HTTP/1.1" 200 None +2025-03-21 12:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4408?force=true HTTP/1.1" 200 None +2025-03-21 12:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4407?force=true HTTP/1.1" 200 None +2025-03-21 12:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4406?force=true HTTP/1.1" 200 None +2025-03-21 12:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4405?force=true HTTP/1.1" 200 None +2025-03-21 12:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4404?force=true HTTP/1.1" 200 None +2025-03-21 12:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4403?force=true HTTP/1.1" 200 None +2025-03-21 12:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4402?force=true HTTP/1.1" 200 None +2025-03-21 12:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4401?force=true HTTP/1.1" 200 None +2025-03-21 12:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4400?force=true HTTP/1.1" 200 None +2025-03-21 12:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4399?force=true HTTP/1.1" 200 None +2025-03-21 12:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4398?force=true HTTP/1.1" 200 None +2025-03-21 12:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4397?force=true HTTP/1.1" 200 None +2025-03-21 12:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4396?force=true HTTP/1.1" 200 None +2025-03-21 12:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4395?force=true HTTP/1.1" 200 None +2025-03-21 12:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4394?force=true HTTP/1.1" 200 None +2025-03-21 12:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4393?force=true HTTP/1.1" 200 None +2025-03-21 12:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4392?force=true HTTP/1.1" 200 None +2025-03-21 12:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4391?force=true HTTP/1.1" 200 None +2025-03-21 12:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4390?force=true HTTP/1.1" 200 None +2025-03-21 12:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4389?force=true HTTP/1.1" 200 None +2025-03-21 12:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4388?force=true HTTP/1.1" 200 None +2025-03-21 12:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4387?force=true HTTP/1.1" 200 None +2025-03-21 12:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4386?force=true HTTP/1.1" 200 None +2025-03-21 12:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4385?force=true HTTP/1.1" 200 None +2025-03-21 12:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4384?force=true HTTP/1.1" 200 None +2025-03-21 12:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4383?force=true HTTP/1.1" 200 None +2025-03-21 12:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4382?force=true HTTP/1.1" 200 None +2025-03-21 12:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4381?force=true HTTP/1.1" 200 None +2025-03-21 12:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4380?force=true HTTP/1.1" 200 None +2025-03-21 12:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4379?force=true HTTP/1.1" 200 None +2025-03-21 12:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4378?force=true HTTP/1.1" 200 None +2025-03-21 12:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4377?force=true HTTP/1.1" 200 None +2025-03-21 12:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4376?force=true HTTP/1.1" 200 None +2025-03-21 12:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4375?force=true HTTP/1.1" 200 None +2025-03-21 12:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4374?force=true HTTP/1.1" 200 None +2025-03-21 12:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4373?force=true HTTP/1.1" 200 None +2025-03-21 12:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4372?force=true HTTP/1.1" 200 None +2025-03-21 12:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4371?force=true HTTP/1.1" 200 None +2025-03-21 12:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4370?force=true HTTP/1.1" 200 None +2025-03-21 12:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4369?force=true HTTP/1.1" 200 None +2025-03-21 12:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4368?force=true HTTP/1.1" 200 None +2025-03-21 12:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4367?force=true HTTP/1.1" 200 None +2025-03-21 12:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4366?force=true HTTP/1.1" 200 None +2025-03-21 12:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4365?force=true HTTP/1.1" 200 None +2025-03-21 12:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4364?force=true HTTP/1.1" 200 None +2025-03-21 12:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4363?force=true HTTP/1.1" 200 None +2025-03-21 12:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4362?force=true HTTP/1.1" 200 None +2025-03-21 12:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4361?force=true HTTP/1.1" 200 None +2025-03-21 12:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4360?force=true HTTP/1.1" 200 None +2025-03-21 12:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4359?force=true HTTP/1.1" 200 None +2025-03-21 12:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4358?force=true HTTP/1.1" 200 None +2025-03-21 12:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4357?force=true HTTP/1.1" 200 None +2025-03-21 12:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4356?force=true HTTP/1.1" 200 None +2025-03-21 12:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4355?force=true HTTP/1.1" 200 None +2025-03-21 12:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4354?force=true HTTP/1.1" 200 None +2025-03-21 12:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4353?force=true HTTP/1.1" 200 None +2025-03-21 12:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4352?force=true HTTP/1.1" 200 None +2025-03-21 12:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4351?force=true HTTP/1.1" 200 None +2025-03-21 12:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4350?force=true HTTP/1.1" 200 None +2025-03-21 12:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4349?force=true HTTP/1.1" 200 None +2025-03-21 12:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4348?force=true HTTP/1.1" 200 None +2025-03-21 12:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4347?force=true HTTP/1.1" 200 None +2025-03-21 12:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4346?force=true HTTP/1.1" 200 None +2025-03-21 12:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4345?force=true HTTP/1.1" 200 None +2025-03-21 12:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4344?force=true HTTP/1.1" 200 None +2025-03-21 12:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4343?force=true HTTP/1.1" 200 None +2025-03-21 12:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4342?force=true HTTP/1.1" 200 None +2025-03-21 12:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4341?force=true HTTP/1.1" 200 None +2025-03-21 12:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4340?force=true HTTP/1.1" 200 None +2025-03-21 12:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-21 12:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4424 HTTP/1.1" 200 None +2025-03-21 12:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4425 HTTP/1.1" 200 None +2025-03-21 12:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4426 HTTP/1.1" 200 None +2025-03-21 12:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4427 HTTP/1.1" 200 None +2025-03-21 12:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4428 HTTP/1.1" 200 None +2025-03-21 12:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4429 HTTP/1.1" 200 None +2025-03-21 12:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4430 HTTP/1.1" 200 None +2025-03-21 12:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4431 HTTP/1.1" 200 None +2025-03-21 12:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4432 HTTP/1.1" 200 None +2025-03-21 12:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4433 HTTP/1.1" 200 None +2025-03-21 12:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4434 HTTP/1.1" 200 None +2025-03-21 12:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4435 HTTP/1.1" 200 None +2025-03-21 12:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4436 HTTP/1.1" 200 None +2025-03-21 12:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4437 HTTP/1.1" 200 None +2025-03-21 12:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4438 HTTP/1.1" 200 None +2025-03-21 12:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4439 HTTP/1.1" 200 None +2025-03-21 12:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4440 HTTP/1.1" 200 None +2025-03-21 12:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4441 HTTP/1.1" 200 None +2025-03-21 12:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4442 HTTP/1.1" 200 None +2025-03-21 12:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4443 HTTP/1.1" 200 None +2025-03-21 12:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4444 HTTP/1.1" 200 None +2025-03-21 12:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4445 HTTP/1.1" 200 None +2025-03-21 12:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4446 HTTP/1.1" 200 None +2025-03-21 12:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4447 HTTP/1.1" 200 None +2025-03-21 12:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4448 HTTP/1.1" 200 None +2025-03-21 12:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4449 HTTP/1.1" 200 None +2025-03-21 12:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4450 HTTP/1.1" 200 None +2025-03-21 12:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4451 HTTP/1.1" 200 None +2025-03-21 12:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4452 HTTP/1.1" 200 None +2025-03-21 12:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4453 HTTP/1.1" 200 None +2025-03-21 12:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4454 HTTP/1.1" 200 None +2025-03-21 12:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4455 HTTP/1.1" 200 None +2025-03-21 12:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4456 HTTP/1.1" 200 None +2025-03-21 12:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4457 HTTP/1.1" 200 None +2025-03-21 12:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4458 HTTP/1.1" 200 None +2025-03-21 12:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4459 HTTP/1.1" 200 None +2025-03-21 12:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4460 HTTP/1.1" 200 None +2025-03-21 12:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4461 HTTP/1.1" 200 None +2025-03-21 12:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4462 HTTP/1.1" 200 None +2025-03-21 12:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4463 HTTP/1.1" 200 None +2025-03-21 12:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4464 HTTP/1.1" 200 None +2025-03-21 12:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4465 HTTP/1.1" 200 None +2025-03-21 12:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4466 HTTP/1.1" 200 None +2025-03-21 12:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4467 HTTP/1.1" 200 None +2025-03-21 12:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4468 HTTP/1.1" 200 None +2025-03-21 12:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4469 HTTP/1.1" 200 None +2025-03-21 12:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4470 HTTP/1.1" 200 None +2025-03-21 12:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4471 HTTP/1.1" 200 None +2025-03-21 12:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4472 HTTP/1.1" 200 None +2025-03-21 12:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4473 HTTP/1.1" 200 None +2025-03-21 12:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4474 HTTP/1.1" 200 None +2025-03-21 12:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4475 HTTP/1.1" 200 None +2025-03-21 12:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4476 HTTP/1.1" 200 None +2025-03-21 12:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4477 HTTP/1.1" 200 None +2025-03-21 12:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4478 HTTP/1.1" 200 None +2025-03-21 12:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4479 HTTP/1.1" 200 None +2025-03-21 12:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4480 HTTP/1.1" 200 None +2025-03-21 12:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4481 HTTP/1.1" 200 None +2025-03-21 12:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4482 HTTP/1.1" 200 None +2025-03-21 12:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4483 HTTP/1.1" 200 None +2025-03-21 12:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4484 HTTP/1.1" 200 None +2025-03-21 12:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4485 HTTP/1.1" 200 None +2025-03-21 12:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4486 HTTP/1.1" 200 None +2025-03-21 12:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4487 HTTP/1.1" 200 None +2025-03-21 12:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4488 HTTP/1.1" 200 None +2025-03-21 12:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4489 HTTP/1.1" 200 None +2025-03-21 12:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4490 HTTP/1.1" 200 None +2025-03-21 12:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4491 HTTP/1.1" 200 None +2025-03-21 12:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4492 HTTP/1.1" 200 None +2025-03-21 12:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4493 HTTP/1.1" 200 None +2025-03-21 12:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4494 HTTP/1.1" 200 None +2025-03-21 12:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4495 HTTP/1.1" 200 None +2025-03-21 12:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4496 HTTP/1.1" 200 None +2025-03-21 12:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4497 HTTP/1.1" 200 None +2025-03-21 12:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4498 HTTP/1.1" 200 None +2025-03-21 12:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4499 HTTP/1.1" 200 None +2025-03-21 12:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4500 HTTP/1.1" 200 None +2025-03-21 12:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4501 HTTP/1.1" 200 None +2025-03-21 12:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4502 HTTP/1.1" 200 None +2025-03-21 12:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4503 HTTP/1.1" 200 None +2025-03-21 12:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4504 HTTP/1.1" 200 None +2025-03-21 12:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4505 HTTP/1.1" 200 None +2025-03-21 12:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4506 HTTP/1.1" 200 None +2025-03-21 12:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4507 HTTP/1.1" 200 None +2025-03-21 12:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4508 HTTP/1.1" 200 None +2025-03-21 12:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4509 HTTP/1.1" 200 None +2025-03-21 12:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4510 HTTP/1.1" 200 None +2025-03-21 12:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4510?force=true HTTP/1.1" 200 None +2025-03-21 12:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4509?force=true HTTP/1.1" 200 None +2025-03-21 12:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4508?force=true HTTP/1.1" 200 None +2025-03-21 12:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4507?force=true HTTP/1.1" 200 None +2025-03-21 12:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4506?force=true HTTP/1.1" 200 None +2025-03-21 12:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4505?force=true HTTP/1.1" 200 None +2025-03-21 12:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4504?force=true HTTP/1.1" 200 None +2025-03-21 12:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4503?force=true HTTP/1.1" 200 None +2025-03-21 12:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4502?force=true HTTP/1.1" 200 None +2025-03-21 12:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4501?force=true HTTP/1.1" 200 None +2025-03-21 12:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4500?force=true HTTP/1.1" 200 None +2025-03-21 12:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4499?force=true HTTP/1.1" 200 None +2025-03-21 12:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4498?force=true HTTP/1.1" 200 None +2025-03-21 12:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4497?force=true HTTP/1.1" 200 None +2025-03-21 12:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4496?force=true HTTP/1.1" 200 None +2025-03-21 12:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4495?force=true HTTP/1.1" 200 None +2025-03-21 12:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4494?force=true HTTP/1.1" 200 None +2025-03-21 12:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4493?force=true HTTP/1.1" 200 None +2025-03-21 12:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4492?force=true HTTP/1.1" 200 None +2025-03-21 12:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4491?force=true HTTP/1.1" 200 None +2025-03-21 12:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4490?force=true HTTP/1.1" 200 None +2025-03-21 12:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4489?force=true HTTP/1.1" 200 None +2025-03-21 12:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4488?force=true HTTP/1.1" 200 None +2025-03-21 12:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4487?force=true HTTP/1.1" 200 None +2025-03-21 12:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4486?force=true HTTP/1.1" 200 None +2025-03-21 12:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4485?force=true HTTP/1.1" 200 None +2025-03-21 12:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4484?force=true HTTP/1.1" 200 None +2025-03-21 12:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4483?force=true HTTP/1.1" 200 None +2025-03-21 12:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4482?force=true HTTP/1.1" 200 None +2025-03-21 12:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4481?force=true HTTP/1.1" 200 None +2025-03-21 12:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4480?force=true HTTP/1.1" 200 None +2025-03-21 12:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4479?force=true HTTP/1.1" 200 None +2025-03-21 12:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4478?force=true HTTP/1.1" 200 None +2025-03-21 12:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4477?force=true HTTP/1.1" 200 None +2025-03-21 12:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4476?force=true HTTP/1.1" 200 None +2025-03-21 12:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4475?force=true HTTP/1.1" 200 None +2025-03-21 12:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4474?force=true HTTP/1.1" 200 None +2025-03-21 12:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4473?force=true HTTP/1.1" 200 None +2025-03-21 12:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4472?force=true HTTP/1.1" 200 None +2025-03-21 12:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4471?force=true HTTP/1.1" 200 None +2025-03-21 12:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4470?force=true HTTP/1.1" 200 None +2025-03-21 12:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4469?force=true HTTP/1.1" 200 None +2025-03-21 12:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4468?force=true HTTP/1.1" 200 None +2025-03-21 12:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4467?force=true HTTP/1.1" 200 None +2025-03-21 12:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4466?force=true HTTP/1.1" 200 None +2025-03-21 12:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4465?force=true HTTP/1.1" 200 None +2025-03-21 12:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4464?force=true HTTP/1.1" 200 None +2025-03-21 12:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4463?force=true HTTP/1.1" 200 None +2025-03-21 12:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4462?force=true HTTP/1.1" 200 None +2025-03-21 12:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4461?force=true HTTP/1.1" 200 None +2025-03-21 12:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4460?force=true HTTP/1.1" 200 None +2025-03-21 12:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4459?force=true HTTP/1.1" 200 None +2025-03-21 12:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4458?force=true HTTP/1.1" 200 None +2025-03-21 12:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4457?force=true HTTP/1.1" 200 None +2025-03-21 12:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4456?force=true HTTP/1.1" 200 None +2025-03-21 12:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4455?force=true HTTP/1.1" 200 None +2025-03-21 12:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4454?force=true HTTP/1.1" 200 None +2025-03-21 12:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4453?force=true HTTP/1.1" 200 None +2025-03-21 12:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4452?force=true HTTP/1.1" 200 None +2025-03-21 12:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4451?force=true HTTP/1.1" 200 None +2025-03-21 12:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4450?force=true HTTP/1.1" 200 None +2025-03-21 12:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4449?force=true HTTP/1.1" 200 None +2025-03-21 12:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4448?force=true HTTP/1.1" 200 None +2025-03-21 12:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4447?force=true HTTP/1.1" 200 None +2025-03-21 12:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4446?force=true HTTP/1.1" 200 None +2025-03-21 12:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4445?force=true HTTP/1.1" 200 None +2025-03-21 12:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4444?force=true HTTP/1.1" 200 None +2025-03-21 12:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4443?force=true HTTP/1.1" 200 None +2025-03-21 12:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4442?force=true HTTP/1.1" 200 None +2025-03-21 12:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4441?force=true HTTP/1.1" 200 None +2025-03-21 12:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4440?force=true HTTP/1.1" 200 None +2025-03-21 12:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4439?force=true HTTP/1.1" 200 None +2025-03-21 12:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4438?force=true HTTP/1.1" 200 None +2025-03-21 12:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4437?force=true HTTP/1.1" 200 None +2025-03-21 12:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4436?force=true HTTP/1.1" 200 None +2025-03-21 12:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4435?force=true HTTP/1.1" 200 None +2025-03-21 12:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4434?force=true HTTP/1.1" 200 None +2025-03-21 12:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4433?force=true HTTP/1.1" 200 None +2025-03-21 12:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4432?force=true HTTP/1.1" 200 None +2025-03-21 12:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4431?force=true HTTP/1.1" 200 None +2025-03-21 12:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4430?force=true HTTP/1.1" 200 None +2025-03-21 12:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4429?force=true HTTP/1.1" 200 None +2025-03-21 12:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4428?force=true HTTP/1.1" 200 None +2025-03-21 12:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4427?force=true HTTP/1.1" 200 None +2025-03-21 12:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4426?force=true HTTP/1.1" 200 None +2025-03-21 12:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4425?force=true HTTP/1.1" 200 None +2025-03-21 12:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4424?force=true HTTP/1.1" 200 None +2025-03-21 12:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-21 12:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4511 HTTP/1.1" 200 None +2025-03-21 12:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4512 HTTP/1.1" 200 None +2025-03-21 12:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4513 HTTP/1.1" 200 None +2025-03-21 12:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4514 HTTP/1.1" 200 None +2025-03-21 12:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4515 HTTP/1.1" 200 None +2025-03-21 12:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4516 HTTP/1.1" 200 None +2025-03-21 12:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4517 HTTP/1.1" 200 None +2025-03-21 12:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4518 HTTP/1.1" 200 None +2025-03-21 12:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4519 HTTP/1.1" 200 None +2025-03-21 12:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4520 HTTP/1.1" 200 None +2025-03-21 12:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4521 HTTP/1.1" 200 None +2025-03-21 12:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4522 HTTP/1.1" 200 None +2025-03-21 12:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4523 HTTP/1.1" 200 None +2025-03-21 12:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4524 HTTP/1.1" 200 None +2025-03-21 12:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4525 HTTP/1.1" 200 None +2025-03-21 12:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4526 HTTP/1.1" 200 None +2025-03-21 12:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4527 HTTP/1.1" 200 None +2025-03-21 12:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4528 HTTP/1.1" 200 None +2025-03-21 12:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4529 HTTP/1.1" 200 None +2025-03-21 12:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4530 HTTP/1.1" 200 None +2025-03-21 12:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4531 HTTP/1.1" 200 None +2025-03-21 12:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4532 HTTP/1.1" 200 None +2025-03-21 12:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4533 HTTP/1.1" 200 None +2025-03-21 12:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4534 HTTP/1.1" 200 None +2025-03-21 12:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4535 HTTP/1.1" 200 None +2025-03-21 12:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4536 HTTP/1.1" 200 None +2025-03-21 12:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4537 HTTP/1.1" 200 None +2025-03-21 12:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4538 HTTP/1.1" 200 None +2025-03-21 12:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4539 HTTP/1.1" 200 None +2025-03-21 12:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4540 HTTP/1.1" 200 None +2025-03-21 12:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4541 HTTP/1.1" 200 None +2025-03-21 12:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4542 HTTP/1.1" 200 None +2025-03-21 12:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4543 HTTP/1.1" 200 None +2025-03-21 12:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4544 HTTP/1.1" 200 None +2025-03-21 12:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4545 HTTP/1.1" 200 None +2025-03-21 12:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4546 HTTP/1.1" 200 None +2025-03-21 12:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4547 HTTP/1.1" 200 None +2025-03-21 12:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4548 HTTP/1.1" 200 None +2025-03-21 12:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4549 HTTP/1.1" 200 None +2025-03-21 12:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4550 HTTP/1.1" 200 None +2025-03-21 12:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4551 HTTP/1.1" 200 None +2025-03-21 12:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4552 HTTP/1.1" 200 None +2025-03-21 12:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4553 HTTP/1.1" 200 None +2025-03-21 12:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4554 HTTP/1.1" 200 None +2025-03-21 12:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4555 HTTP/1.1" 200 None +2025-03-21 12:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4556 HTTP/1.1" 200 None +2025-03-21 12:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4557 HTTP/1.1" 200 None +2025-03-21 12:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4558 HTTP/1.1" 200 None +2025-03-21 12:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4559 HTTP/1.1" 200 None +2025-03-21 12:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4560 HTTP/1.1" 200 None +2025-03-21 12:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4561 HTTP/1.1" 200 None +2025-03-21 12:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4562 HTTP/1.1" 200 None +2025-03-21 12:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4563 HTTP/1.1" 200 None +2025-03-21 12:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4564 HTTP/1.1" 200 None +2025-03-21 12:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4565 HTTP/1.1" 200 None +2025-03-21 12:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4566 HTTP/1.1" 200 None +2025-03-21 12:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4567 HTTP/1.1" 200 None +2025-03-21 12:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4568 HTTP/1.1" 200 None +2025-03-21 12:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4569 HTTP/1.1" 200 None +2025-03-21 12:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4570 HTTP/1.1" 200 None +2025-03-21 12:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4571 HTTP/1.1" 200 None +2025-03-21 12:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4572 HTTP/1.1" 200 None +2025-03-21 12:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4573 HTTP/1.1" 200 None +2025-03-21 12:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4574 HTTP/1.1" 200 None +2025-03-21 12:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4575 HTTP/1.1" 200 None +2025-03-21 12:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4576 HTTP/1.1" 200 None +2025-03-21 12:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4577 HTTP/1.1" 200 None +2025-03-21 12:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4578 HTTP/1.1" 200 None +2025-03-21 12:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4579 HTTP/1.1" 200 None +2025-03-21 12:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4580 HTTP/1.1" 200 None +2025-03-21 12:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4581 HTTP/1.1" 200 None +2025-03-21 12:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4582 HTTP/1.1" 200 None +2025-03-21 12:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4583 HTTP/1.1" 200 None +2025-03-21 12:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4584 HTTP/1.1" 200 None +2025-03-21 12:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4585 HTTP/1.1" 200 None +2025-03-21 12:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4586 HTTP/1.1" 200 None +2025-03-21 12:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4587 HTTP/1.1" 200 None +2025-03-21 12:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4588 HTTP/1.1" 200 None +2025-03-21 12:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4589 HTTP/1.1" 200 None +2025-03-21 12:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4590 HTTP/1.1" 200 None +2025-03-21 12:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4591 HTTP/1.1" 200 None +2025-03-21 12:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4592 HTTP/1.1" 200 None +2025-03-21 12:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4593 HTTP/1.1" 200 None +2025-03-21 12:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4594 HTTP/1.1" 200 None +2025-03-21 12:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4595 HTTP/1.1" 200 None +2025-03-21 12:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4596 HTTP/1.1" 200 None +2025-03-21 12:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4597 HTTP/1.1" 200 None +2025-03-21 12:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4598 HTTP/1.1" 200 None +2025-03-21 12:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4599 HTTP/1.1" 200 None +2025-03-21 12:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4600 HTTP/1.1" 200 None +2025-03-21 12:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4600?force=true HTTP/1.1" 200 None +2025-03-21 12:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4599?force=true HTTP/1.1" 200 None +2025-03-21 12:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4598?force=true HTTP/1.1" 200 None +2025-03-21 12:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4597?force=true HTTP/1.1" 200 None +2025-03-21 12:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4596?force=true HTTP/1.1" 200 None +2025-03-21 12:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4595?force=true HTTP/1.1" 200 None +2025-03-21 12:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4594?force=true HTTP/1.1" 200 None +2025-03-21 12:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4593?force=true HTTP/1.1" 200 None +2025-03-21 12:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4592?force=true HTTP/1.1" 200 None +2025-03-21 12:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4591?force=true HTTP/1.1" 200 None +2025-03-21 12:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4590?force=true HTTP/1.1" 200 None +2025-03-21 12:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4589?force=true HTTP/1.1" 200 None +2025-03-21 12:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4588?force=true HTTP/1.1" 200 None +2025-03-21 12:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4587?force=true HTTP/1.1" 200 None +2025-03-21 12:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4586?force=true HTTP/1.1" 200 None +2025-03-21 12:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4585?force=true HTTP/1.1" 200 None +2025-03-21 12:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4584?force=true HTTP/1.1" 200 None +2025-03-21 12:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4583?force=true HTTP/1.1" 200 None +2025-03-21 12:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4582?force=true HTTP/1.1" 200 None +2025-03-21 12:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4581?force=true HTTP/1.1" 200 None +2025-03-21 12:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4580?force=true HTTP/1.1" 200 None +2025-03-21 12:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4579?force=true HTTP/1.1" 200 None +2025-03-21 12:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4578?force=true HTTP/1.1" 200 None +2025-03-21 12:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4577?force=true HTTP/1.1" 200 None +2025-03-21 12:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4576?force=true HTTP/1.1" 200 None +2025-03-21 12:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4575?force=true HTTP/1.1" 200 None +2025-03-21 12:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4574?force=true HTTP/1.1" 200 None +2025-03-21 12:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4573?force=true HTTP/1.1" 200 None +2025-03-21 12:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4572?force=true HTTP/1.1" 200 None +2025-03-21 12:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4571?force=true HTTP/1.1" 200 None +2025-03-21 12:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4570?force=true HTTP/1.1" 200 None +2025-03-21 12:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4569?force=true HTTP/1.1" 200 None +2025-03-21 12:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4568?force=true HTTP/1.1" 200 None +2025-03-21 12:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4567?force=true HTTP/1.1" 200 None +2025-03-21 12:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4566?force=true HTTP/1.1" 200 None +2025-03-21 12:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4565?force=true HTTP/1.1" 200 None +2025-03-21 12:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4564?force=true HTTP/1.1" 200 None +2025-03-21 12:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4563?force=true HTTP/1.1" 200 None +2025-03-21 12:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4562?force=true HTTP/1.1" 200 None +2025-03-21 12:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4561?force=true HTTP/1.1" 200 None +2025-03-21 12:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4560?force=true HTTP/1.1" 200 None +2025-03-21 12:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4559?force=true HTTP/1.1" 200 None +2025-03-21 12:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4558?force=true HTTP/1.1" 200 None +2025-03-21 12:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4557?force=true HTTP/1.1" 200 None +2025-03-21 12:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4556?force=true HTTP/1.1" 200 None +2025-03-21 12:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4555?force=true HTTP/1.1" 200 None +2025-03-21 12:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4554?force=true HTTP/1.1" 200 None +2025-03-21 12:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4553?force=true HTTP/1.1" 200 None +2025-03-21 12:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4552?force=true HTTP/1.1" 200 None +2025-03-21 12:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4551?force=true HTTP/1.1" 200 None +2025-03-21 12:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4550?force=true HTTP/1.1" 200 None +2025-03-21 12:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4549?force=true HTTP/1.1" 200 None +2025-03-21 12:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4548?force=true HTTP/1.1" 200 None +2025-03-21 12:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4547?force=true HTTP/1.1" 200 None +2025-03-21 12:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4546?force=true HTTP/1.1" 200 None +2025-03-21 12:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4545?force=true HTTP/1.1" 200 None +2025-03-21 12:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4544?force=true HTTP/1.1" 200 None +2025-03-21 12:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4543?force=true HTTP/1.1" 200 None +2025-03-21 12:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4542?force=true HTTP/1.1" 200 None +2025-03-21 12:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4541?force=true HTTP/1.1" 200 None +2025-03-21 12:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4540?force=true HTTP/1.1" 200 None +2025-03-21 12:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4539?force=true HTTP/1.1" 200 None +2025-03-21 12:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4538?force=true HTTP/1.1" 200 None +2025-03-21 12:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4537?force=true HTTP/1.1" 200 None +2025-03-21 12:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4536?force=true HTTP/1.1" 200 None +2025-03-21 12:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4535?force=true HTTP/1.1" 200 None +2025-03-21 12:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4534?force=true HTTP/1.1" 200 None +2025-03-21 12:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4533?force=true HTTP/1.1" 200 None +2025-03-21 12:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4532?force=true HTTP/1.1" 200 None +2025-03-21 12:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4531?force=true HTTP/1.1" 200 None +2025-03-21 12:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4530?force=true HTTP/1.1" 200 None +2025-03-21 12:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4529?force=true HTTP/1.1" 200 None +2025-03-21 12:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4528?force=true HTTP/1.1" 200 None +2025-03-21 12:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4527?force=true HTTP/1.1" 200 None +2025-03-21 12:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4526?force=true HTTP/1.1" 200 None +2025-03-21 12:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4525?force=true HTTP/1.1" 200 None +2025-03-21 12:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4524?force=true HTTP/1.1" 200 None +2025-03-21 12:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4523?force=true HTTP/1.1" 200 None +2025-03-21 12:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4522?force=true HTTP/1.1" 200 None +2025-03-21 12:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4521?force=true HTTP/1.1" 200 None +2025-03-21 12:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4520?force=true HTTP/1.1" 200 None +2025-03-21 12:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4519?force=true HTTP/1.1" 200 None +2025-03-21 12:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4518?force=true HTTP/1.1" 200 None +2025-03-21 12:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4517?force=true HTTP/1.1" 200 None +2025-03-21 12:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4516?force=true HTTP/1.1" 200 None +2025-03-21 12:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4515?force=true HTTP/1.1" 200 None +2025-03-21 12:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4514?force=true HTTP/1.1" 200 None +2025-03-21 12:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4513?force=true HTTP/1.1" 200 None +2025-03-21 12:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4512?force=true HTTP/1.1" 200 None +2025-03-21 12:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4511?force=true HTTP/1.1" 200 None +2025-03-21 12:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 12:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-21 12:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4601 HTTP/1.1" 200 None +2025-03-21 12:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4602 HTTP/1.1" 200 None +2025-03-21 12:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4603 HTTP/1.1" 200 None +2025-03-21 12:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4604 HTTP/1.1" 200 None +2025-03-21 12:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4605 HTTP/1.1" 200 None +2025-03-21 12:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4606 HTTP/1.1" 200 None +2025-03-21 12:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4607 HTTP/1.1" 200 None +2025-03-21 12:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4608 HTTP/1.1" 200 None +2025-03-21 12:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4609 HTTP/1.1" 200 None +2025-03-21 12:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4610 HTTP/1.1" 200 None +2025-03-21 12:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4611 HTTP/1.1" 200 None +2025-03-21 12:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4612 HTTP/1.1" 200 None +2025-03-21 12:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4613 HTTP/1.1" 200 None +2025-03-21 12:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4614 HTTP/1.1" 200 None +2025-03-21 12:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4615 HTTP/1.1" 200 None +2025-03-21 12:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4616 HTTP/1.1" 200 None +2025-03-21 12:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4617 HTTP/1.1" 200 None +2025-03-21 12:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4618 HTTP/1.1" 200 None +2025-03-21 12:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4619 HTTP/1.1" 200 None +2025-03-21 12:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4620 HTTP/1.1" 200 None +2025-03-21 12:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4621 HTTP/1.1" 200 None +2025-03-21 12:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4622 HTTP/1.1" 200 None +2025-03-21 12:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4623 HTTP/1.1" 200 None +2025-03-21 12:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4624 HTTP/1.1" 200 None +2025-03-21 12:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4625 HTTP/1.1" 200 None +2025-03-21 12:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4626 HTTP/1.1" 200 None +2025-03-21 12:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4627 HTTP/1.1" 200 None +2025-03-21 12:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4628 HTTP/1.1" 200 None +2025-03-21 12:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4629 HTTP/1.1" 200 None +2025-03-21 12:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4630 HTTP/1.1" 200 None +2025-03-21 12:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4631 HTTP/1.1" 200 None +2025-03-21 12:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4632 HTTP/1.1" 200 None +2025-03-21 12:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4633 HTTP/1.1" 200 None +2025-03-21 12:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4634 HTTP/1.1" 200 None +2025-03-21 12:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4635 HTTP/1.1" 200 None +2025-03-21 12:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4636 HTTP/1.1" 200 None +2025-03-21 12:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4637 HTTP/1.1" 200 None +2025-03-21 12:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4638 HTTP/1.1" 200 None +2025-03-21 12:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4639 HTTP/1.1" 200 None +2025-03-21 12:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4640 HTTP/1.1" 200 None +2025-03-21 12:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4641 HTTP/1.1" 200 None +2025-03-21 12:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4642 HTTP/1.1" 200 None +2025-03-21 12:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4643 HTTP/1.1" 200 None +2025-03-21 12:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4644 HTTP/1.1" 200 None +2025-03-21 12:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4645 HTTP/1.1" 200 None +2025-03-21 12:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4646 HTTP/1.1" 200 None +2025-03-21 12:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4647 HTTP/1.1" 200 None +2025-03-21 12:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4648 HTTP/1.1" 200 None +2025-03-21 12:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4649 HTTP/1.1" 200 None +2025-03-21 12:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4650 HTTP/1.1" 200 None +2025-03-21 12:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4651 HTTP/1.1" 200 None +2025-03-21 12:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4652 HTTP/1.1" 200 None +2025-03-21 12:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4653 HTTP/1.1" 200 None +2025-03-21 12:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4654 HTTP/1.1" 200 None +2025-03-21 12:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4655 HTTP/1.1" 200 None +2025-03-21 12:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4656 HTTP/1.1" 200 None +2025-03-21 12:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4657 HTTP/1.1" 200 None +2025-03-21 12:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4658 HTTP/1.1" 200 None +2025-03-21 12:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4659 HTTP/1.1" 200 None +2025-03-21 12:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4660 HTTP/1.1" 200 None +2025-03-21 12:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4661 HTTP/1.1" 200 None +2025-03-21 12:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4662 HTTP/1.1" 200 None +2025-03-21 12:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4663 HTTP/1.1" 200 None +2025-03-21 12:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4664 HTTP/1.1" 200 None +2025-03-21 12:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4665 HTTP/1.1" 200 None +2025-03-21 12:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4666 HTTP/1.1" 200 None +2025-03-21 12:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4667 HTTP/1.1" 200 None +2025-03-21 12:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4668 HTTP/1.1" 200 None +2025-03-21 12:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4669 HTTP/1.1" 200 None +2025-03-21 12:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4670 HTTP/1.1" 200 None +2025-03-21 12:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4671 HTTP/1.1" 200 None +2025-03-21 12:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4672 HTTP/1.1" 200 None +2025-03-21 12:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4673 HTTP/1.1" 200 None +2025-03-21 12:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4674 HTTP/1.1" 200 None +2025-03-21 12:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4675 HTTP/1.1" 200 None +2025-03-21 12:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4676 HTTP/1.1" 200 None +2025-03-21 12:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4677 HTTP/1.1" 200 None +2025-03-21 12:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4678 HTTP/1.1" 200 None +2025-03-21 12:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4679 HTTP/1.1" 200 None +2025-03-21 12:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4680 HTTP/1.1" 200 None +2025-03-21 12:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4681 HTTP/1.1" 200 None +2025-03-21 12:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4682 HTTP/1.1" 200 None +2025-03-21 12:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4683 HTTP/1.1" 200 None +2025-03-21 12:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4684 HTTP/1.1" 200 None +2025-03-21 12:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4685 HTTP/1.1" 200 None +2025-03-21 12:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4686 HTTP/1.1" 200 None +2025-03-21 12:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4687 HTTP/1.1" 200 None +2025-03-21 12:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4688 HTTP/1.1" 200 None +2025-03-21 12:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4689 HTTP/1.1" 200 None +2025-03-21 12:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 12:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4690 HTTP/1.1" 200 None +2025-03-21 12:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 12:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 12:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 12:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4691 HTTP/1.1" 200 None +2025-03-21 13:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4692 HTTP/1.1" 200 None +2025-03-21 13:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4693 HTTP/1.1" 200 None +2025-03-21 13:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4694 HTTP/1.1" 200 None +2025-03-21 13:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4695 HTTP/1.1" 200 None +2025-03-21 13:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4696 HTTP/1.1" 200 None +2025-03-21 13:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4697 HTTP/1.1" 200 None +2025-03-21 13:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4698 HTTP/1.1" 200 None +2025-03-21 13:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4699 HTTP/1.1" 200 None +2025-03-21 13:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4700 HTTP/1.1" 200 None +2025-03-21 13:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4701 HTTP/1.1" 200 None +2025-03-21 13:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4702 HTTP/1.1" 200 None +2025-03-21 13:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4703 HTTP/1.1" 200 None +2025-03-21 13:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4704 HTTP/1.1" 200 None +2025-03-21 13:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4705 HTTP/1.1" 200 None +2025-03-21 13:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4706 HTTP/1.1" 200 None +2025-03-21 13:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4707 HTTP/1.1" 200 None +2025-03-21 13:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4707?force=true HTTP/1.1" 200 None +2025-03-21 13:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4706?force=true HTTP/1.1" 200 None +2025-03-21 13:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4705?force=true HTTP/1.1" 200 None +2025-03-21 13:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4704?force=true HTTP/1.1" 200 None +2025-03-21 13:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4703?force=true HTTP/1.1" 200 None +2025-03-21 13:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4702?force=true HTTP/1.1" 200 None +2025-03-21 13:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4701?force=true HTTP/1.1" 200 None +2025-03-21 13:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4700?force=true HTTP/1.1" 200 None +2025-03-21 13:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4699?force=true HTTP/1.1" 200 None +2025-03-21 13:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4698?force=true HTTP/1.1" 200 None +2025-03-21 13:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4697?force=true HTTP/1.1" 200 None +2025-03-21 13:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4696?force=true HTTP/1.1" 200 None +2025-03-21 13:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4695?force=true HTTP/1.1" 200 None +2025-03-21 13:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4694?force=true HTTP/1.1" 200 None +2025-03-21 13:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4693?force=true HTTP/1.1" 200 None +2025-03-21 13:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4692?force=true HTTP/1.1" 200 None +2025-03-21 13:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4691?force=true HTTP/1.1" 200 None +2025-03-21 13:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4690?force=true HTTP/1.1" 200 None +2025-03-21 13:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4689?force=true HTTP/1.1" 200 None +2025-03-21 13:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4688?force=true HTTP/1.1" 200 None +2025-03-21 13:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4687?force=true HTTP/1.1" 200 None +2025-03-21 13:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4686?force=true HTTP/1.1" 200 None +2025-03-21 13:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4685?force=true HTTP/1.1" 200 None +2025-03-21 13:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4684?force=true HTTP/1.1" 200 None +2025-03-21 13:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4683?force=true HTTP/1.1" 200 None +2025-03-21 13:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4682?force=true HTTP/1.1" 200 None +2025-03-21 13:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4681?force=true HTTP/1.1" 200 None +2025-03-21 13:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4680?force=true HTTP/1.1" 200 None +2025-03-21 13:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4679?force=true HTTP/1.1" 200 None +2025-03-21 13:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4678?force=true HTTP/1.1" 200 None +2025-03-21 13:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4677?force=true HTTP/1.1" 200 None +2025-03-21 13:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4676?force=true HTTP/1.1" 200 None +2025-03-21 13:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4675?force=true HTTP/1.1" 200 None +2025-03-21 13:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4674?force=true HTTP/1.1" 200 None +2025-03-21 13:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4673?force=true HTTP/1.1" 200 None +2025-03-21 13:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4672?force=true HTTP/1.1" 200 None +2025-03-21 13:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4671?force=true HTTP/1.1" 200 None +2025-03-21 13:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4670?force=true HTTP/1.1" 200 None +2025-03-21 13:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4669?force=true HTTP/1.1" 200 None +2025-03-21 13:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4668?force=true HTTP/1.1" 200 None +2025-03-21 13:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4667?force=true HTTP/1.1" 200 None +2025-03-21 13:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4666?force=true HTTP/1.1" 200 None +2025-03-21 13:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4665?force=true HTTP/1.1" 200 None +2025-03-21 13:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4664?force=true HTTP/1.1" 200 None +2025-03-21 13:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4663?force=true HTTP/1.1" 200 None +2025-03-21 13:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4662?force=true HTTP/1.1" 200 None +2025-03-21 13:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4661?force=true HTTP/1.1" 200 None +2025-03-21 13:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4660?force=true HTTP/1.1" 200 None +2025-03-21 13:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4659?force=true HTTP/1.1" 200 None +2025-03-21 13:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4658?force=true HTTP/1.1" 200 None +2025-03-21 13:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4657?force=true HTTP/1.1" 200 None +2025-03-21 13:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4656?force=true HTTP/1.1" 200 None +2025-03-21 13:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4655?force=true HTTP/1.1" 200 None +2025-03-21 13:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4654?force=true HTTP/1.1" 200 None +2025-03-21 13:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4653?force=true HTTP/1.1" 200 None +2025-03-21 13:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4652?force=true HTTP/1.1" 200 None +2025-03-21 13:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4651?force=true HTTP/1.1" 200 None +2025-03-21 13:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4650?force=true HTTP/1.1" 200 None +2025-03-21 13:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4649?force=true HTTP/1.1" 200 None +2025-03-21 13:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4648?force=true HTTP/1.1" 200 None +2025-03-21 13:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4647?force=true HTTP/1.1" 200 None +2025-03-21 13:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4646?force=true HTTP/1.1" 200 None +2025-03-21 13:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4645?force=true HTTP/1.1" 200 None +2025-03-21 13:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4644?force=true HTTP/1.1" 200 None +2025-03-21 13:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4643?force=true HTTP/1.1" 200 None +2025-03-21 13:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4642?force=true HTTP/1.1" 200 None +2025-03-21 13:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4641?force=true HTTP/1.1" 200 None +2025-03-21 13:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4640?force=true HTTP/1.1" 200 None +2025-03-21 13:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4639?force=true HTTP/1.1" 200 None +2025-03-21 13:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4638?force=true HTTP/1.1" 200 None +2025-03-21 13:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4637?force=true HTTP/1.1" 200 None +2025-03-21 13:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4636?force=true HTTP/1.1" 200 None +2025-03-21 13:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4635?force=true HTTP/1.1" 200 None +2025-03-21 13:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4634?force=true HTTP/1.1" 200 None +2025-03-21 13:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4633?force=true HTTP/1.1" 200 None +2025-03-21 13:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4632?force=true HTTP/1.1" 200 None +2025-03-21 13:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4631?force=true HTTP/1.1" 200 None +2025-03-21 13:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4630?force=true HTTP/1.1" 200 None +2025-03-21 13:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4629?force=true HTTP/1.1" 200 None +2025-03-21 13:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4628?force=true HTTP/1.1" 200 None +2025-03-21 13:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4627?force=true HTTP/1.1" 200 None +2025-03-21 13:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4626?force=true HTTP/1.1" 200 None +2025-03-21 13:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4625?force=true HTTP/1.1" 200 None +2025-03-21 13:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4624?force=true HTTP/1.1" 200 None +2025-03-21 13:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4623?force=true HTTP/1.1" 200 None +2025-03-21 13:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4622?force=true HTTP/1.1" 200 None +2025-03-21 13:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4621?force=true HTTP/1.1" 200 None +2025-03-21 13:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4620?force=true HTTP/1.1" 200 None +2025-03-21 13:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4619?force=true HTTP/1.1" 200 None +2025-03-21 13:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4618?force=true HTTP/1.1" 200 None +2025-03-21 13:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4617?force=true HTTP/1.1" 200 None +2025-03-21 13:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4616?force=true HTTP/1.1" 200 None +2025-03-21 13:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4615?force=true HTTP/1.1" 200 None +2025-03-21 13:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4614?force=true HTTP/1.1" 200 None +2025-03-21 13:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4613?force=true HTTP/1.1" 200 None +2025-03-21 13:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4612?force=true HTTP/1.1" 200 None +2025-03-21 13:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4611?force=true HTTP/1.1" 200 None +2025-03-21 13:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4610?force=true HTTP/1.1" 200 None +2025-03-21 13:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4609?force=true HTTP/1.1" 200 None +2025-03-21 13:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4608?force=true HTTP/1.1" 200 None +2025-03-21 13:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4607?force=true HTTP/1.1" 200 None +2025-03-21 13:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4606?force=true HTTP/1.1" 200 None +2025-03-21 13:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4605?force=true HTTP/1.1" 200 None +2025-03-21 13:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4604?force=true HTTP/1.1" 200 None +2025-03-21 13:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4603?force=true HTTP/1.1" 200 None +2025-03-21 13:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4602?force=true HTTP/1.1" 200 None +2025-03-21 13:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4601?force=true HTTP/1.1" 200 None +2025-03-21 13:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-03-21 13:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4708 HTTP/1.1" 200 None +2025-03-21 13:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4709 HTTP/1.1" 200 None +2025-03-21 13:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4710 HTTP/1.1" 200 None +2025-03-21 13:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4711 HTTP/1.1" 200 None +2025-03-21 13:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4712 HTTP/1.1" 200 None +2025-03-21 13:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4713 HTTP/1.1" 200 None +2025-03-21 13:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4714 HTTP/1.1" 200 None +2025-03-21 13:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4715 HTTP/1.1" 200 None +2025-03-21 13:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4716 HTTP/1.1" 200 None +2025-03-21 13:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4717 HTTP/1.1" 200 None +2025-03-21 13:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4718 HTTP/1.1" 200 None +2025-03-21 13:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4719 HTTP/1.1" 200 None +2025-03-21 13:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4720 HTTP/1.1" 200 None +2025-03-21 13:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4721 HTTP/1.1" 200 None +2025-03-21 13:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4722 HTTP/1.1" 200 None +2025-03-21 13:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4723 HTTP/1.1" 200 None +2025-03-21 13:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4724 HTTP/1.1" 200 None +2025-03-21 13:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4725 HTTP/1.1" 200 None +2025-03-21 13:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4726 HTTP/1.1" 200 None +2025-03-21 13:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4727 HTTP/1.1" 200 None +2025-03-21 13:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4728 HTTP/1.1" 200 None +2025-03-21 13:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4729 HTTP/1.1" 200 None +2025-03-21 13:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4730 HTTP/1.1" 200 None +2025-03-21 13:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4731 HTTP/1.1" 200 None +2025-03-21 13:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4732 HTTP/1.1" 200 None +2025-03-21 13:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4733 HTTP/1.1" 200 None +2025-03-21 13:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4734 HTTP/1.1" 200 None +2025-03-21 13:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4735 HTTP/1.1" 200 None +2025-03-21 13:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4736 HTTP/1.1" 200 None +2025-03-21 13:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4737 HTTP/1.1" 200 None +2025-03-21 13:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4738 HTTP/1.1" 200 None +2025-03-21 13:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4739 HTTP/1.1" 200 None +2025-03-21 13:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4740 HTTP/1.1" 200 None +2025-03-21 13:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4741 HTTP/1.1" 200 None +2025-03-21 13:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4742 HTTP/1.1" 200 None +2025-03-21 13:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4743 HTTP/1.1" 200 None +2025-03-21 13:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4744 HTTP/1.1" 200 None +2025-03-21 13:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4745 HTTP/1.1" 200 None +2025-03-21 13:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4746 HTTP/1.1" 200 None +2025-03-21 13:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4747 HTTP/1.1" 200 None +2025-03-21 13:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4748 HTTP/1.1" 200 None +2025-03-21 13:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4749 HTTP/1.1" 200 None +2025-03-21 13:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4750 HTTP/1.1" 200 None +2025-03-21 13:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4751 HTTP/1.1" 200 None +2025-03-21 13:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4752 HTTP/1.1" 200 None +2025-03-21 13:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4753 HTTP/1.1" 200 None +2025-03-21 13:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4754 HTTP/1.1" 200 None +2025-03-21 13:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4755 HTTP/1.1" 200 None +2025-03-21 13:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4756 HTTP/1.1" 200 None +2025-03-21 13:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4757 HTTP/1.1" 200 None +2025-03-21 13:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4758 HTTP/1.1" 200 None +2025-03-21 13:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4759 HTTP/1.1" 200 None +2025-03-21 13:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4760 HTTP/1.1" 200 None +2025-03-21 13:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4761 HTTP/1.1" 200 None +2025-03-21 13:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4762 HTTP/1.1" 200 None +2025-03-21 13:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4763 HTTP/1.1" 200 None +2025-03-21 13:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4764 HTTP/1.1" 200 None +2025-03-21 13:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4765 HTTP/1.1" 200 None +2025-03-21 13:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4766 HTTP/1.1" 200 None +2025-03-21 13:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4767 HTTP/1.1" 200 None +2025-03-21 13:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4768 HTTP/1.1" 200 None +2025-03-21 13:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4769 HTTP/1.1" 200 None +2025-03-21 13:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4770 HTTP/1.1" 200 None +2025-03-21 13:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4771 HTTP/1.1" 200 None +2025-03-21 13:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4772 HTTP/1.1" 200 None +2025-03-21 13:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4773 HTTP/1.1" 200 None +2025-03-21 13:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4774 HTTP/1.1" 200 None +2025-03-21 13:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4775 HTTP/1.1" 200 None +2025-03-21 13:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4776 HTTP/1.1" 200 None +2025-03-21 13:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4777 HTTP/1.1" 200 None +2025-03-21 13:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4778 HTTP/1.1" 200 None +2025-03-21 13:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4779 HTTP/1.1" 200 None +2025-03-21 13:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4780 HTTP/1.1" 200 None +2025-03-21 13:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4781 HTTP/1.1" 200 None +2025-03-21 13:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4782 HTTP/1.1" 200 None +2025-03-21 13:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4783 HTTP/1.1" 200 None +2025-03-21 13:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4784 HTTP/1.1" 200 None +2025-03-21 13:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4785 HTTP/1.1" 200 None +2025-03-21 13:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4786 HTTP/1.1" 200 None +2025-03-21 13:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4787 HTTP/1.1" 200 None +2025-03-21 13:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4788 HTTP/1.1" 200 None +2025-03-21 13:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4789 HTTP/1.1" 200 None +2025-03-21 13:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4790 HTTP/1.1" 200 None +2025-03-21 13:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4791 HTTP/1.1" 200 None +2025-03-21 13:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4792 HTTP/1.1" 200 None +2025-03-21 13:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4793 HTTP/1.1" 200 None +2025-03-21 13:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4794 HTTP/1.1" 200 None +2025-03-21 13:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4795 HTTP/1.1" 200 None +2025-03-21 13:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4796 HTTP/1.1" 200 None +2025-03-21 13:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4797 HTTP/1.1" 200 None +2025-03-21 13:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4798 HTTP/1.1" 200 None +2025-03-21 13:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4799 HTTP/1.1" 200 None +2025-03-21 13:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4800 HTTP/1.1" 200 None +2025-03-21 13:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4801 HTTP/1.1" 200 None +2025-03-21 13:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4802 HTTP/1.1" 200 None +2025-03-21 13:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4803 HTTP/1.1" 200 None +2025-03-21 13:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4804 HTTP/1.1" 200 None +2025-03-21 13:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4805 HTTP/1.1" 200 None +2025-03-21 13:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4806 HTTP/1.1" 200 None +2025-03-21 13:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4807 HTTP/1.1" 200 None +2025-03-21 13:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-03-21 13:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4808 HTTP/1.1" 200 None +2025-03-21 13:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4809 HTTP/1.1" 200 None +2025-03-21 13:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4810 HTTP/1.1" 200 None +2025-03-21 13:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4811 HTTP/1.1" 200 None +2025-03-21 13:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4812 HTTP/1.1" 200 None +2025-03-21 13:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4813 HTTP/1.1" 200 None +2025-03-21 13:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4814 HTTP/1.1" 200 None +2025-03-21 13:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4815 HTTP/1.1" 200 None +2025-03-21 13:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4816 HTTP/1.1" 200 None +2025-03-21 13:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4817 HTTP/1.1" 200 None +2025-03-21 13:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4818 HTTP/1.1" 200 None +2025-03-21 13:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4819 HTTP/1.1" 200 None +2025-03-21 13:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4820 HTTP/1.1" 200 None +2025-03-21 13:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4821 HTTP/1.1" 200 None +2025-03-21 13:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4822 HTTP/1.1" 200 None +2025-03-21 13:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4823 HTTP/1.1" 200 None +2025-03-21 13:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4824 HTTP/1.1" 200 None +2025-03-21 13:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4825 HTTP/1.1" 200 None +2025-03-21 13:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4826 HTTP/1.1" 200 None +2025-03-21 13:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4827 HTTP/1.1" 200 None +2025-03-21 13:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4828 HTTP/1.1" 200 None +2025-03-21 13:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4829 HTTP/1.1" 200 None +2025-03-21 13:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4830 HTTP/1.1" 200 None +2025-03-21 13:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4831 HTTP/1.1" 200 None +2025-03-21 13:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4832 HTTP/1.1" 200 None +2025-03-21 13:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4833 HTTP/1.1" 200 None +2025-03-21 13:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4834 HTTP/1.1" 200 None +2025-03-21 13:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4835 HTTP/1.1" 200 None +2025-03-21 13:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4836 HTTP/1.1" 200 None +2025-03-21 13:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4837 HTTP/1.1" 200 None +2025-03-21 13:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4838 HTTP/1.1" 200 None +2025-03-21 13:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4839 HTTP/1.1" 200 None +2025-03-21 13:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4840 HTTP/1.1" 200 None +2025-03-21 13:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4841 HTTP/1.1" 200 None +2025-03-21 13:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4842 HTTP/1.1" 200 None +2025-03-21 13:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4843 HTTP/1.1" 200 None +2025-03-21 13:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4844 HTTP/1.1" 200 None +2025-03-21 13:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4845 HTTP/1.1" 200 None +2025-03-21 13:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4846 HTTP/1.1" 200 None +2025-03-21 13:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4847 HTTP/1.1" 200 None +2025-03-21 13:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4848 HTTP/1.1" 200 None +2025-03-21 13:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4849 HTTP/1.1" 200 None +2025-03-21 13:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4850 HTTP/1.1" 200 None +2025-03-21 13:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4851 HTTP/1.1" 200 None +2025-03-21 13:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4852 HTTP/1.1" 200 None +2025-03-21 13:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4853 HTTP/1.1" 200 None +2025-03-21 13:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4854 HTTP/1.1" 200 None +2025-03-21 13:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4855 HTTP/1.1" 200 None +2025-03-21 13:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4856 HTTP/1.1" 200 None +2025-03-21 13:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4857 HTTP/1.1" 200 None +2025-03-21 13:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4858 HTTP/1.1" 200 None +2025-03-21 13:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4859 HTTP/1.1" 200 None +2025-03-21 13:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4860 HTTP/1.1" 200 None +2025-03-21 13:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4861 HTTP/1.1" 200 None +2025-03-21 13:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4862 HTTP/1.1" 200 None +2025-03-21 13:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-03-21 13:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/4863 HTTP/1.1" 200 None +2025-03-21 13:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4713 HTTP/1.1" 200 None +2025-03-21 13:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/416 HTTP/1.1" 200 None +2025-03-21 13:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/417 HTTP/1.1" 200 None +2025-03-21 13:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4710 HTTP/1.1" 200 None +2025-03-21 13:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/417 HTTP/1.1" 200 None +2025-03-21 13:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4740 HTTP/1.1" 200 None +2025-03-21 13:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/418 HTTP/1.1" 200 None +2025-03-21 13:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4760 HTTP/1.1" 200 None +2025-03-21 13:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/419 HTTP/1.1" 200 None +2025-03-21 13:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-21 13:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/420 HTTP/1.1" 400 None +2025-03-21 13:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4756 HTTP/1.1" 200 None +2025-03-21 13:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/421 HTTP/1.1" 200 None +2025-03-21 13:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-21 13:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/422 HTTP/1.1" 400 None +2025-03-21 13:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4764 HTTP/1.1" 200 None +2025-03-21 13:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/423 HTTP/1.1" 200 None +2025-03-21 13:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/4790 HTTP/1.1" 200 None +2025-03-21 13:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/424 HTTP/1.1" 200 None +2025-03-21 13:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/425 HTTP/1.1" 200 None +2025-03-21 13:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-21 13:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/425 HTTP/1.1" 400 None +2025-03-21 13:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-03-21 13:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-03-21 13:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/426 HTTP/1.1" 400 None +2025-03-21 13:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-21 13:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-21 13:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-21 13:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-21 13:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-21 13:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-03-21 13:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/54/terms HTTP/1.1" 201 None +2025-03-21 13:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/54/terms HTTP/1.1" 201 None +2025-03-21 13:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/54/terms HTTP/1.1" 201 None +2025-03-21 13:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/54/terms HTTP/1.1" 201 None +2025-03-21 13:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/54/terms HTTP/1.1" 201 None +2025-03-21 13:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/52/terms HTTP/1.1" 201 None +2025-03-21 13:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/56/terms HTTP/1.1" 201 None +2025-03-21 13:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/56/terms HTTP/1.1" 201 None +2025-03-21 13:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/56/terms HTTP/1.1" 201 None +2025-03-21 13:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/56/terms HTTP/1.1" 400 None +2025-03-21 13:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/51/terms HTTP/1.1" 201 None +2025-03-21 13:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/53/terms HTTP/1.1" 201 None +2025-03-21 13:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/53/terms HTTP/1.1" 201 None +2025-03-21 13:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/53/terms HTTP/1.1" 201 None +2025-03-21 13:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/53/terms HTTP/1.1" 201 None +2025-03-21 13:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/53/terms HTTP/1.1" 201 None +2025-03-21 13:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/55/terms HTTP/1.1" 201 None +2025-03-21 13:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/55/terms HTTP/1.1" 201 None +2025-03-21 13:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 13:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 13:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 13:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4864 HTTP/1.1" 200 None +2025-03-21 13:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4865 HTTP/1.1" 200 None +2025-03-21 13:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4866 HTTP/1.1" 200 None +2025-03-21 13:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4867 HTTP/1.1" 200 None +2025-03-21 13:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4868 HTTP/1.1" 200 None +2025-03-21 13:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4869 HTTP/1.1" 200 None +2025-03-21 13:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4870 HTTP/1.1" 200 None +2025-03-21 13:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4871 HTTP/1.1" 200 None +2025-03-21 13:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4872 HTTP/1.1" 200 None +2025-03-21 13:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4873 HTTP/1.1" 200 None +2025-03-21 13:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4874 HTTP/1.1" 200 None +2025-03-21 13:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4875 HTTP/1.1" 200 None +2025-03-21 13:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4876 HTTP/1.1" 200 None +2025-03-21 13:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4877 HTTP/1.1" 200 None +2025-03-21 13:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4878 HTTP/1.1" 200 None +2025-03-21 13:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4879 HTTP/1.1" 200 None +2025-03-21 13:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4880 HTTP/1.1" 200 None +2025-03-21 13:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4881 HTTP/1.1" 200 None +2025-03-21 13:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 13:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 13:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 13:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 13:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4882 HTTP/1.1" 200 None +2025-03-21 14:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4883 HTTP/1.1" 200 None +2025-03-21 14:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4884 HTTP/1.1" 200 None +2025-03-21 14:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4885 HTTP/1.1" 200 None +2025-03-21 14:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4886 HTTP/1.1" 200 None +2025-03-21 14:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4887 HTTP/1.1" 200 None +2025-03-21 14:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4888 HTTP/1.1" 200 None +2025-03-21 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4889 HTTP/1.1" 200 None +2025-03-21 14:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 400 None +2025-03-21 14:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4890 HTTP/1.1" 200 None +2025-03-21 14:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 400 None +2025-03-21 14:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4891 HTTP/1.1" 200 None +2025-03-21 14:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 400 None +2025-03-21 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4892 HTTP/1.1" 200 None +2025-03-21 14:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 400 None +2025-03-21 14:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4893 HTTP/1.1" 200 None +2025-03-21 14:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 400 None +2025-03-21 14:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4894 HTTP/1.1" 200 None +2025-03-21 14:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 400 None +2025-03-21 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4895 HTTP/1.1" 200 None +2025-03-21 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 400 None +2025-03-21 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4896 HTTP/1.1" 200 None +2025-03-21 14:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 14:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 14:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 14:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 400 None +2025-03-21 15:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4897 HTTP/1.1" 200 None +2025-03-21 15:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 400 None +2025-03-21 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4898 HTTP/1.1" 200 None +2025-03-21 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 400 None +2025-03-21 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4899 HTTP/1.1" 200 None +2025-03-21 15:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 400 None +2025-03-21 15:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4900 HTTP/1.1" 200 None +2025-03-21 15:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 400 None +2025-03-21 15:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4901 HTTP/1.1" 200 None +2025-03-21 15:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 400 None +2025-03-21 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4902 HTTP/1.1" 200 None +2025-03-21 15:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-03-21 15:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-03-21 15:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 400 None +2025-03-21 15:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4903 HTTP/1.1" 200 None +2025-03-21 15:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 400 None +2025-03-21 15:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4904 HTTP/1.1" 200 None +2025-03-21 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 400 None +2025-03-21 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4905 HTTP/1.1" 200 None +2025-03-21 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 400 None +2025-03-21 15:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4906 HTTP/1.1" 200 None +2025-03-21 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 400 None +2025-03-21 15:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4907 HTTP/1.1" 200 None +2025-03-21 15:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 15:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 15:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 15:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 15:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 400 None +2025-03-21 16:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4909 HTTP/1.1" 200 None +2025-03-21 16:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-03-21 16:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 400 None +2025-03-21 16:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-03-21 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/4920 HTTP/1.1" 200 None +2025-03-21 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 16:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 16:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-03-21 16:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-03-21 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-03-21 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-03-21 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-03-21 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 12:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 12:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 200 None +2025-04-02 12:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=3 HTTP/1.1" 400 None +2025-04-02 12:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5083?force=true HTTP/1.1" 200 None +2025-04-02 12:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5082?force=true HTTP/1.1" 200 None +2025-04-02 12:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5046?force=true HTTP/1.1" 200 None +2025-04-02 12:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5042?force=true HTTP/1.1" 200 None +2025-04-02 12:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5039?force=true HTTP/1.1" 200 None +2025-04-02 12:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4863?force=true HTTP/1.1" 200 None +2025-04-02 12:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4862?force=true HTTP/1.1" 200 None +2025-04-02 12:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4861?force=true HTTP/1.1" 200 None +2025-04-02 12:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4860?force=true HTTP/1.1" 200 None +2025-04-02 12:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4859?force=true HTTP/1.1" 200 None +2025-04-02 12:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4858?force=true HTTP/1.1" 200 None +2025-04-02 12:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4857?force=true HTTP/1.1" 200 None +2025-04-02 12:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4856?force=true HTTP/1.1" 200 None +2025-04-02 12:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4855?force=true HTTP/1.1" 200 None +2025-04-02 12:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4854?force=true HTTP/1.1" 200 None +2025-04-02 12:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4853?force=true HTTP/1.1" 200 None +2025-04-02 12:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4852?force=true HTTP/1.1" 200 None +2025-04-02 12:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4851?force=true HTTP/1.1" 200 None +2025-04-02 12:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4850?force=true HTTP/1.1" 200 None +2025-04-02 12:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4849?force=true HTTP/1.1" 200 None +2025-04-02 12:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4848?force=true HTTP/1.1" 200 None +2025-04-02 12:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4847?force=true HTTP/1.1" 200 None +2025-04-02 12:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4846?force=true HTTP/1.1" 200 None +2025-04-02 12:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4845?force=true HTTP/1.1" 200 None +2025-04-02 12:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4844?force=true HTTP/1.1" 200 None +2025-04-02 12:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4843?force=true HTTP/1.1" 200 None +2025-04-02 12:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4842?force=true HTTP/1.1" 200 None +2025-04-02 12:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4841?force=true HTTP/1.1" 200 None +2025-04-02 12:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4840?force=true HTTP/1.1" 200 None +2025-04-02 12:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4839?force=true HTTP/1.1" 200 None +2025-04-02 12:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4838?force=true HTTP/1.1" 200 None +2025-04-02 12:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4837?force=true HTTP/1.1" 200 None +2025-04-02 12:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4836?force=true HTTP/1.1" 200 None +2025-04-02 12:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4835?force=true HTTP/1.1" 200 None +2025-04-02 12:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4834?force=true HTTP/1.1" 200 None +2025-04-02 12:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4833?force=true HTTP/1.1" 200 None +2025-04-02 12:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4832?force=true HTTP/1.1" 200 None +2025-04-02 12:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4831?force=true HTTP/1.1" 200 None +2025-04-02 12:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4830?force=true HTTP/1.1" 200 None +2025-04-02 12:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4829?force=true HTTP/1.1" 200 None +2025-04-02 12:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4828?force=true HTTP/1.1" 200 None +2025-04-02 12:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4827?force=true HTTP/1.1" 200 None +2025-04-02 12:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4826?force=true HTTP/1.1" 200 None +2025-04-02 12:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4825?force=true HTTP/1.1" 200 None +2025-04-02 12:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4824?force=true HTTP/1.1" 200 None +2025-04-02 12:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4823?force=true HTTP/1.1" 200 None +2025-04-02 12:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4822?force=true HTTP/1.1" 200 None +2025-04-02 12:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4821?force=true HTTP/1.1" 200 None +2025-04-02 12:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4820?force=true HTTP/1.1" 200 None +2025-04-02 12:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4819?force=true HTTP/1.1" 200 None +2025-04-02 12:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4818?force=true HTTP/1.1" 200 None +2025-04-02 12:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4817?force=true HTTP/1.1" 200 None +2025-04-02 12:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4816?force=true HTTP/1.1" 200 None +2025-04-02 12:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4815?force=true HTTP/1.1" 200 None +2025-04-02 12:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4814?force=true HTTP/1.1" 200 None +2025-04-02 12:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4813?force=true HTTP/1.1" 200 None +2025-04-02 12:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4812?force=true HTTP/1.1" 200 None +2025-04-02 12:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4811?force=true HTTP/1.1" 200 None +2025-04-02 12:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4810?force=true HTTP/1.1" 200 None +2025-04-02 12:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4809?force=true HTTP/1.1" 200 None +2025-04-02 12:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4808?force=true HTTP/1.1" 200 None +2025-04-02 12:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4807?force=true HTTP/1.1" 200 None +2025-04-02 12:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4806?force=true HTTP/1.1" 200 None +2025-04-02 12:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4805?force=true HTTP/1.1" 200 None +2025-04-02 12:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4804?force=true HTTP/1.1" 200 None +2025-04-02 12:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4803?force=true HTTP/1.1" 200 None +2025-04-02 12:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4802?force=true HTTP/1.1" 200 None +2025-04-02 12:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4801?force=true HTTP/1.1" 200 None +2025-04-02 12:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4800?force=true HTTP/1.1" 200 None +2025-04-02 12:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4799?force=true HTTP/1.1" 200 None +2025-04-02 12:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4798?force=true HTTP/1.1" 200 None +2025-04-02 12:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4797?force=true HTTP/1.1" 200 None +2025-04-02 12:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4796?force=true HTTP/1.1" 200 None +2025-04-02 12:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4795?force=true HTTP/1.1" 200 None +2025-04-02 12:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4794?force=true HTTP/1.1" 200 None +2025-04-02 12:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4793?force=true HTTP/1.1" 200 None +2025-04-02 12:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4792?force=true HTTP/1.1" 200 None +2025-04-02 12:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4791?force=true HTTP/1.1" 200 None +2025-04-02 12:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4790?force=true HTTP/1.1" 200 None +2025-04-02 12:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4789?force=true HTTP/1.1" 200 None +2025-04-02 12:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4788?force=true HTTP/1.1" 200 None +2025-04-02 12:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4787?force=true HTTP/1.1" 200 None +2025-04-02 12:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4786?force=true HTTP/1.1" 200 None +2025-04-02 12:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4785?force=true HTTP/1.1" 200 None +2025-04-02 12:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4784?force=true HTTP/1.1" 200 None +2025-04-02 12:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4783?force=true HTTP/1.1" 200 None +2025-04-02 12:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4782?force=true HTTP/1.1" 200 None +2025-04-02 12:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4781?force=true HTTP/1.1" 200 None +2025-04-02 12:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4780?force=true HTTP/1.1" 200 None +2025-04-02 12:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4779?force=true HTTP/1.1" 200 None +2025-04-02 12:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4778?force=true HTTP/1.1" 200 None +2025-04-02 12:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4777?force=true HTTP/1.1" 200 None +2025-04-02 12:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4776?force=true HTTP/1.1" 200 None +2025-04-02 12:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4775?force=true HTTP/1.1" 200 None +2025-04-02 12:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4774?force=true HTTP/1.1" 200 None +2025-04-02 12:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4773?force=true HTTP/1.1" 200 None +2025-04-02 12:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4772?force=true HTTP/1.1" 200 None +2025-04-02 12:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4771?force=true HTTP/1.1" 200 None +2025-04-02 12:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4770?force=true HTTP/1.1" 200 None +2025-04-02 12:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4769?force=true HTTP/1.1" 200 None +2025-04-02 12:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4768?force=true HTTP/1.1" 200 None +2025-04-02 12:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4767?force=true HTTP/1.1" 200 None +2025-04-02 12:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4766?force=true HTTP/1.1" 200 None +2025-04-02 12:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4765?force=true HTTP/1.1" 200 None +2025-04-02 12:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4764?force=true HTTP/1.1" 200 None +2025-04-02 12:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4763?force=true HTTP/1.1" 200 None +2025-04-02 12:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4762?force=true HTTP/1.1" 200 None +2025-04-02 12:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4761?force=true HTTP/1.1" 200 None +2025-04-02 12:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4760?force=true HTTP/1.1" 200 None +2025-04-02 12:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4759?force=true HTTP/1.1" 200 None +2025-04-02 12:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4758?force=true HTTP/1.1" 200 None +2025-04-02 12:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4757?force=true HTTP/1.1" 200 None +2025-04-02 12:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4756?force=true HTTP/1.1" 200 None +2025-04-02 12:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4755?force=true HTTP/1.1" 200 None +2025-04-02 12:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4754?force=true HTTP/1.1" 200 None +2025-04-02 12:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4753?force=true HTTP/1.1" 200 None +2025-04-02 12:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4752?force=true HTTP/1.1" 200 None +2025-04-02 12:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4751?force=true HTTP/1.1" 200 None +2025-04-02 12:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4750?force=true HTTP/1.1" 200 None +2025-04-02 12:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4749?force=true HTTP/1.1" 200 None +2025-04-02 12:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4748?force=true HTTP/1.1" 200 None +2025-04-02 12:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4747?force=true HTTP/1.1" 200 None +2025-04-02 12:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4746?force=true HTTP/1.1" 200 None +2025-04-02 12:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4745?force=true HTTP/1.1" 200 None +2025-04-02 12:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4744?force=true HTTP/1.1" 200 None +2025-04-02 12:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4743?force=true HTTP/1.1" 200 None +2025-04-02 12:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4742?force=true HTTP/1.1" 200 None +2025-04-02 12:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4741?force=true HTTP/1.1" 200 None +2025-04-02 12:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4740?force=true HTTP/1.1" 200 None +2025-04-02 12:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4739?force=true HTTP/1.1" 200 None +2025-04-02 12:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4738?force=true HTTP/1.1" 200 None +2025-04-02 12:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4737?force=true HTTP/1.1" 200 None +2025-04-02 12:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4736?force=true HTTP/1.1" 200 None +2025-04-02 12:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4735?force=true HTTP/1.1" 200 None +2025-04-02 12:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4734?force=true HTTP/1.1" 200 None +2025-04-02 12:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4733?force=true HTTP/1.1" 200 None +2025-04-02 12:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4732?force=true HTTP/1.1" 200 None +2025-04-02 12:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4731?force=true HTTP/1.1" 200 None +2025-04-02 12:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4730?force=true HTTP/1.1" 200 None +2025-04-02 12:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4729?force=true HTTP/1.1" 200 None +2025-04-02 12:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4728?force=true HTTP/1.1" 200 None +2025-04-02 12:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4727?force=true HTTP/1.1" 200 None +2025-04-02 12:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4726?force=true HTTP/1.1" 200 None +2025-04-02 12:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4725?force=true HTTP/1.1" 200 None +2025-04-02 12:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4724?force=true HTTP/1.1" 200 None +2025-04-02 12:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4723?force=true HTTP/1.1" 200 None +2025-04-02 12:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4722?force=true HTTP/1.1" 200 None +2025-04-02 12:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4721?force=true HTTP/1.1" 200 None +2025-04-02 12:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4720?force=true HTTP/1.1" 200 None +2025-04-02 12:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4719?force=true HTTP/1.1" 200 None +2025-04-02 12:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4718?force=true HTTP/1.1" 200 None +2025-04-02 12:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4717?force=true HTTP/1.1" 200 None +2025-04-02 12:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4716?force=true HTTP/1.1" 200 None +2025-04-02 12:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4715?force=true HTTP/1.1" 200 None +2025-04-02 12:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4714?force=true HTTP/1.1" 200 None +2025-04-02 12:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4713?force=true HTTP/1.1" 200 None +2025-04-02 12:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4712?force=true HTTP/1.1" 200 None +2025-04-02 12:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4711?force=true HTTP/1.1" 200 None +2025-04-02 12:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4710?force=true HTTP/1.1" 200 None +2025-04-02 12:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4709?force=true HTTP/1.1" 200 None +2025-04-02 12:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/4708?force=true HTTP/1.1" 200 None +2025-04-02 12:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 12:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/54?force=True HTTP/1.1" 200 None +2025-04-02 12:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/52?force=True HTTP/1.1" 200 None +2025-04-02 12:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/56?force=True HTTP/1.1" 200 None +2025-04-02 12:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/51?force=True HTTP/1.1" 200 None +2025-04-02 12:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/53?force=True HTTP/1.1" 200 None +2025-04-02 12:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/55?force=True HTTP/1.1" 200 None +2025-04-02 12:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 12:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-04-02 12:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4920?force=True HTTP/1.1" 200 None +2025-04-02 12:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4909?force=True HTTP/1.1" 200 None +2025-04-02 12:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4907?force=True HTTP/1.1" 200 None +2025-04-02 12:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4906?force=True HTTP/1.1" 200 None +2025-04-02 12:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4905?force=True HTTP/1.1" 200 None +2025-04-02 12:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4904?force=True HTTP/1.1" 200 None +2025-04-02 12:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4903?force=True HTTP/1.1" 200 None +2025-04-02 12:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4902?force=True HTTP/1.1" 200 None +2025-04-02 12:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4901?force=True HTTP/1.1" 200 None +2025-04-02 12:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4900?force=True HTTP/1.1" 200 None +2025-04-02 12:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4899?force=True HTTP/1.1" 200 None +2025-04-02 12:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4898?force=True HTTP/1.1" 200 None +2025-04-02 12:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4897?force=True HTTP/1.1" 200 None +2025-04-02 12:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4896?force=True HTTP/1.1" 200 None +2025-04-02 12:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4895?force=True HTTP/1.1" 200 None +2025-04-02 12:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4894?force=True HTTP/1.1" 200 None +2025-04-02 12:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4893?force=True HTTP/1.1" 200 None +2025-04-02 12:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4892?force=True HTTP/1.1" 200 None +2025-04-02 12:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4891?force=True HTTP/1.1" 200 None +2025-04-02 12:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4890?force=True HTTP/1.1" 200 None +2025-04-02 12:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4889?force=True HTTP/1.1" 200 None +2025-04-02 12:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4888?force=True HTTP/1.1" 200 None +2025-04-02 12:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4887?force=True HTTP/1.1" 200 None +2025-04-02 12:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4886?force=True HTTP/1.1" 200 None +2025-04-02 12:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4885?force=True HTTP/1.1" 200 None +2025-04-02 12:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4884?force=True HTTP/1.1" 200 None +2025-04-02 12:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4883?force=True HTTP/1.1" 200 None +2025-04-02 12:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4882?force=True HTTP/1.1" 200 None +2025-04-02 12:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4881?force=True HTTP/1.1" 200 None +2025-04-02 12:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4880?force=True HTTP/1.1" 200 None +2025-04-02 12:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4879?force=True HTTP/1.1" 200 None +2025-04-02 12:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4878?force=True HTTP/1.1" 200 None +2025-04-02 12:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4877?force=True HTTP/1.1" 200 None +2025-04-02 12:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4876?force=True HTTP/1.1" 200 None +2025-04-02 12:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4875?force=True HTTP/1.1" 200 None +2025-04-02 12:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4874?force=True HTTP/1.1" 200 None +2025-04-02 12:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4873?force=True HTTP/1.1" 200 None +2025-04-02 12:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4872?force=True HTTP/1.1" 200 None +2025-04-02 12:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4871?force=True HTTP/1.1" 200 None +2025-04-02 12:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4870?force=True HTTP/1.1" 200 None +2025-04-02 12:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4869?force=True HTTP/1.1" 200 None +2025-04-02 12:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4868?force=True HTTP/1.1" 200 None +2025-04-02 12:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4867?force=True HTTP/1.1" 200 None +2025-04-02 12:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4866?force=True HTTP/1.1" 200 None +2025-04-02 12:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4865?force=True HTTP/1.1" 200 None +2025-04-02 12:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/4864?force=True HTTP/1.1" 200 None +2025-04-02 12:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 12:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/421?force=True HTTP/1.1" 200 None +2025-04-02 12:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/423?force=True HTTP/1.1" 200 None +2025-04-02 12:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 12:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/422?force=True HTTP/1.1" 200 None +2025-04-02 12:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/417?force=True HTTP/1.1" 200 None +2025-04-02 12:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/426?force=True HTTP/1.1" 200 None +2025-04-02 12:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/424?force=True HTTP/1.1" 200 None +2025-04-02 12:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/416?force=True HTTP/1.1" 200 None +2025-04-02 12:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/420?force=True HTTP/1.1" 200 None +2025-04-02 12:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/425?force=True HTTP/1.1" 200 None +2025-04-02 12:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/418?force=True HTTP/1.1" 200 None +2025-04-02 12:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 12:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/419?force=True HTTP/1.1" 200 None +2025-04-02 13:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 13:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 13:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5123 HTTP/1.1" 200 None +2025-04-02 13:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 13:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 13:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 13:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5124 HTTP/1.1" 200 None +2025-04-02 13:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 13:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 13:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 14:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5124?force=true HTTP/1.1" 200 None +2025-04-02 14:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5123?force=true HTTP/1.1" 200 None +2025-04-02 14:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 14:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5125 HTTP/1.1" 200 None +2025-04-02 14:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5126 HTTP/1.1" 200 None +2025-04-02 14:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 14:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5126?force=true HTTP/1.1" 200 None +2025-04-02 14:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5125?force=true HTTP/1.1" 200 None +2025-04-02 14:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 14:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5127 HTTP/1.1" 200 None +2025-04-02 14:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5128 HTTP/1.1" 200 None +2025-04-02 14:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5129 HTTP/1.1" 200 None +2025-04-02 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5130 HTTP/1.1" 200 None +2025-04-02 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 14:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5130?force=true HTTP/1.1" 200 None +2025-04-02 14:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5129?force=true HTTP/1.1" 200 None +2025-04-02 14:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5128?force=true HTTP/1.1" 200 None +2025-04-02 14:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5127?force=true HTTP/1.1" 200 None +2025-04-02 14:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 14:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5131 HTTP/1.1" 200 None +2025-04-02 14:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5132 HTTP/1.1" 200 None +2025-04-02 14:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5133 HTTP/1.1" 200 None +2025-04-02 14:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5134 HTTP/1.1" 200 None +2025-04-02 14:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5135 HTTP/1.1" 200 None +2025-04-02 14:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5136 HTTP/1.1" 200 None +2025-04-02 14:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5137 HTTP/1.1" 200 None +2025-04-02 14:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5138 HTTP/1.1" 200 None +2025-04-02 14:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5139 HTTP/1.1" 200 None +2025-04-02 14:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5140 HTTP/1.1" 200 None +2025-04-02 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5141 HTTP/1.1" 200 None +2025-04-02 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5142 HTTP/1.1" 200 None +2025-04-02 14:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5143 HTTP/1.1" 200 None +2025-04-02 14:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5144 HTTP/1.1" 200 None +2025-04-02 14:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5145 HTTP/1.1" 200 None +2025-04-02 14:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5146 HTTP/1.1" 200 None +2025-04-02 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5147 HTTP/1.1" 200 None +2025-04-02 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5148 HTTP/1.1" 200 None +2025-04-02 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5149 HTTP/1.1" 200 None +2025-04-02 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5150 HTTP/1.1" 200 None +2025-04-02 14:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5151 HTTP/1.1" 200 None +2025-04-02 14:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5152 HTTP/1.1" 200 None +2025-04-02 14:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5153 HTTP/1.1" 200 None +2025-04-02 14:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5154 HTTP/1.1" 200 None +2025-04-02 14:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5155 HTTP/1.1" 200 None +2025-04-02 14:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5156 HTTP/1.1" 200 None +2025-04-02 14:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5157 HTTP/1.1" 200 None +2025-04-02 14:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5158 HTTP/1.1" 200 None +2025-04-02 14:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5159 HTTP/1.1" 200 None +2025-04-02 14:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5160 HTTP/1.1" 200 None +2025-04-02 14:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 14:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5160?force=true HTTP/1.1" 200 None +2025-04-02 14:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5159?force=true HTTP/1.1" 200 None +2025-04-02 14:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5158?force=true HTTP/1.1" 200 None +2025-04-02 14:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5157?force=true HTTP/1.1" 200 None +2025-04-02 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5156?force=true HTTP/1.1" 200 None +2025-04-02 14:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5155?force=true HTTP/1.1" 200 None +2025-04-02 14:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5154?force=true HTTP/1.1" 200 None +2025-04-02 14:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5153?force=true HTTP/1.1" 200 None +2025-04-02 14:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5152?force=true HTTP/1.1" 200 None +2025-04-02 14:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5151?force=true HTTP/1.1" 200 None +2025-04-02 14:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5150?force=true HTTP/1.1" 200 None +2025-04-02 14:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5149?force=true HTTP/1.1" 200 None +2025-04-02 14:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5148?force=true HTTP/1.1" 200 None +2025-04-02 14:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5147?force=true HTTP/1.1" 200 None +2025-04-02 14:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5146?force=true HTTP/1.1" 200 None +2025-04-02 14:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5145?force=true HTTP/1.1" 200 None +2025-04-02 14:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5144?force=true HTTP/1.1" 200 None +2025-04-02 14:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5143?force=true HTTP/1.1" 200 None +2025-04-02 14:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5142?force=true HTTP/1.1" 200 None +2025-04-02 14:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5141?force=true HTTP/1.1" 200 None +2025-04-02 14:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5140?force=true HTTP/1.1" 200 None +2025-04-02 14:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5139?force=true HTTP/1.1" 200 None +2025-04-02 14:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5138?force=true HTTP/1.1" 200 None +2025-04-02 14:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5137?force=true HTTP/1.1" 200 None +2025-04-02 14:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5136?force=true HTTP/1.1" 200 None +2025-04-02 14:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5135?force=true HTTP/1.1" 200 None +2025-04-02 14:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5134?force=true HTTP/1.1" 200 None +2025-04-02 14:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5133?force=true HTTP/1.1" 200 None +2025-04-02 14:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5132?force=true HTTP/1.1" 200 None +2025-04-02 14:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5131?force=true HTTP/1.1" 200 None +2025-04-02 14:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 14:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5161 HTTP/1.1" 200 None +2025-04-02 14:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5162 HTTP/1.1" 200 None +2025-04-02 14:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5163 HTTP/1.1" 200 None +2025-04-02 14:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5164 HTTP/1.1" 200 None +2025-04-02 14:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5165 HTTP/1.1" 200 None +2025-04-02 14:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5166 HTTP/1.1" 200 None +2025-04-02 14:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5167 HTTP/1.1" 200 None +2025-04-02 14:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5168 HTTP/1.1" 200 None +2025-04-02 14:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5169 HTTP/1.1" 200 None +2025-04-02 14:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5170 HTTP/1.1" 200 None +2025-04-02 14:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5171 HTTP/1.1" 200 None +2025-04-02 14:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5172 HTTP/1.1" 200 None +2025-04-02 14:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5173 HTTP/1.1" 200 None +2025-04-02 14:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5174 HTTP/1.1" 200 None +2025-04-02 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5175 HTTP/1.1" 200 None +2025-04-02 14:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5176 HTTP/1.1" 200 None +2025-04-02 14:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5177 HTTP/1.1" 200 None +2025-04-02 14:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5178 HTTP/1.1" 200 None +2025-04-02 14:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5179 HTTP/1.1" 200 None +2025-04-02 14:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5180 HTTP/1.1" 200 None +2025-04-02 14:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5181 HTTP/1.1" 200 None +2025-04-02 14:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5182 HTTP/1.1" 200 None +2025-04-02 14:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5183 HTTP/1.1" 200 None +2025-04-02 14:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5184 HTTP/1.1" 200 None +2025-04-02 14:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5185 HTTP/1.1" 200 None +2025-04-02 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5186 HTTP/1.1" 200 None +2025-04-02 14:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5187 HTTP/1.1" 200 None +2025-04-02 14:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5188 HTTP/1.1" 200 None +2025-04-02 14:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5189 HTTP/1.1" 200 None +2025-04-02 14:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5190 HTTP/1.1" 200 None +2025-04-02 14:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5191 HTTP/1.1" 200 None +2025-04-02 14:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5192 HTTP/1.1" 200 None +2025-04-02 14:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5193 HTTP/1.1" 200 None +2025-04-02 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5194 HTTP/1.1" 200 None +2025-04-02 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5195 HTTP/1.1" 200 None +2025-04-02 14:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5196 HTTP/1.1" 200 None +2025-04-02 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5197 HTTP/1.1" 200 None +2025-04-02 14:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5198 HTTP/1.1" 200 None +2025-04-02 14:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5199 HTTP/1.1" 200 None +2025-04-02 14:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5200 HTTP/1.1" 200 None +2025-04-02 14:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5201 HTTP/1.1" 200 None +2025-04-02 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5202 HTTP/1.1" 200 None +2025-04-02 14:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5203 HTTP/1.1" 200 None +2025-04-02 14:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5204 HTTP/1.1" 200 None +2025-04-02 14:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5205 HTTP/1.1" 200 None +2025-04-02 14:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5206 HTTP/1.1" 200 None +2025-04-02 14:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5207 HTTP/1.1" 200 None +2025-04-02 14:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5208 HTTP/1.1" 200 None +2025-04-02 14:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5209 HTTP/1.1" 200 None +2025-04-02 14:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5210 HTTP/1.1" 200 None +2025-04-02 14:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5211 HTTP/1.1" 200 None +2025-04-02 14:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5212 HTTP/1.1" 200 None +2025-04-02 14:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5213 HTTP/1.1" 200 None +2025-04-02 14:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5214 HTTP/1.1" 200 None +2025-04-02 14:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5215 HTTP/1.1" 200 None +2025-04-02 14:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5216 HTTP/1.1" 200 None +2025-04-02 14:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5217 HTTP/1.1" 200 None +2025-04-02 14:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5218 HTTP/1.1" 200 None +2025-04-02 14:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5219 HTTP/1.1" 200 None +2025-04-02 14:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 14:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5219?force=true HTTP/1.1" 200 None +2025-04-02 14:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5218?force=true HTTP/1.1" 200 None +2025-04-02 14:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5217?force=true HTTP/1.1" 200 None +2025-04-02 14:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5216?force=true HTTP/1.1" 200 None +2025-04-02 14:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5215?force=true HTTP/1.1" 200 None +2025-04-02 14:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5214?force=true HTTP/1.1" 200 None +2025-04-02 14:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5213?force=true HTTP/1.1" 200 None +2025-04-02 14:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5212?force=true HTTP/1.1" 200 None +2025-04-02 14:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5211?force=true HTTP/1.1" 200 None +2025-04-02 14:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5210?force=true HTTP/1.1" 200 None +2025-04-02 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5209?force=true HTTP/1.1" 200 None +2025-04-02 14:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5208?force=true HTTP/1.1" 200 None +2025-04-02 14:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5207?force=true HTTP/1.1" 200 None +2025-04-02 14:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5206?force=true HTTP/1.1" 200 None +2025-04-02 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5205?force=true HTTP/1.1" 200 None +2025-04-02 14:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5204?force=true HTTP/1.1" 200 None +2025-04-02 14:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5203?force=true HTTP/1.1" 200 None +2025-04-02 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5202?force=true HTTP/1.1" 200 None +2025-04-02 14:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5201?force=true HTTP/1.1" 200 None +2025-04-02 14:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5200?force=true HTTP/1.1" 200 None +2025-04-02 14:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5199?force=true HTTP/1.1" 200 None +2025-04-02 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5198?force=true HTTP/1.1" 200 None +2025-04-02 14:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5197?force=true HTTP/1.1" 200 None +2025-04-02 14:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5196?force=true HTTP/1.1" 200 None +2025-04-02 14:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5195?force=true HTTP/1.1" 200 None +2025-04-02 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5194?force=true HTTP/1.1" 200 None +2025-04-02 14:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5193?force=true HTTP/1.1" 200 None +2025-04-02 14:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5192?force=true HTTP/1.1" 200 None +2025-04-02 14:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5191?force=true HTTP/1.1" 200 None +2025-04-02 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5190?force=true HTTP/1.1" 200 None +2025-04-02 14:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5189?force=true HTTP/1.1" 200 None +2025-04-02 14:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5188?force=true HTTP/1.1" 200 None +2025-04-02 14:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5187?force=true HTTP/1.1" 200 None +2025-04-02 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5186?force=true HTTP/1.1" 200 None +2025-04-02 14:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5185?force=true HTTP/1.1" 200 None +2025-04-02 14:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5184?force=true HTTP/1.1" 200 None +2025-04-02 14:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5183?force=true HTTP/1.1" 200 None +2025-04-02 14:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5182?force=true HTTP/1.1" 200 None +2025-04-02 14:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5181?force=true HTTP/1.1" 200 None +2025-04-02 14:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5180?force=true HTTP/1.1" 200 None +2025-04-02 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5179?force=true HTTP/1.1" 200 None +2025-04-02 14:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5178?force=true HTTP/1.1" 200 None +2025-04-02 14:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5177?force=true HTTP/1.1" 200 None +2025-04-02 14:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5176?force=true HTTP/1.1" 200 None +2025-04-02 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5175?force=true HTTP/1.1" 200 None +2025-04-02 14:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5174?force=true HTTP/1.1" 200 None +2025-04-02 14:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5173?force=true HTTP/1.1" 200 None +2025-04-02 14:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5172?force=true HTTP/1.1" 200 None +2025-04-02 14:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5171?force=true HTTP/1.1" 200 None +2025-04-02 14:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5170?force=true HTTP/1.1" 200 None +2025-04-02 14:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5169?force=true HTTP/1.1" 200 None +2025-04-02 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5168?force=true HTTP/1.1" 200 None +2025-04-02 14:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5167?force=true HTTP/1.1" 200 None +2025-04-02 14:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5166?force=true HTTP/1.1" 200 None +2025-04-02 14:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5165?force=true HTTP/1.1" 200 None +2025-04-02 14:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5164?force=true HTTP/1.1" 200 None +2025-04-02 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5163?force=true HTTP/1.1" 200 None +2025-04-02 14:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5162?force=true HTTP/1.1" 200 None +2025-04-02 14:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5161?force=true HTTP/1.1" 200 None +2025-04-02 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 14:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5220 HTTP/1.1" 200 None +2025-04-02 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5221 HTTP/1.1" 200 None +2025-04-02 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5222 HTTP/1.1" 200 None +2025-04-02 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5223 HTTP/1.1" 200 None +2025-04-02 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5224 HTTP/1.1" 200 None +2025-04-02 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5225 HTTP/1.1" 200 None +2025-04-02 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5226 HTTP/1.1" 200 None +2025-04-02 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5227 HTTP/1.1" 200 None +2025-04-02 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5228 HTTP/1.1" 200 None +2025-04-02 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5229 HTTP/1.1" 200 None +2025-04-02 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5230 HTTP/1.1" 200 None +2025-04-02 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5231 HTTP/1.1" 200 None +2025-04-02 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5232 HTTP/1.1" 200 None +2025-04-02 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5233 HTTP/1.1" 200 None +2025-04-02 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5234 HTTP/1.1" 200 None +2025-04-02 14:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5235 HTTP/1.1" 200 None +2025-04-02 14:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5236 HTTP/1.1" 200 None +2025-04-02 14:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5237 HTTP/1.1" 200 None +2025-04-02 14:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5238 HTTP/1.1" 200 None +2025-04-02 14:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5239 HTTP/1.1" 200 None +2025-04-02 14:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5240 HTTP/1.1" 200 None +2025-04-02 14:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5241 HTTP/1.1" 200 None +2025-04-02 14:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5242 HTTP/1.1" 200 None +2025-04-02 14:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5243 HTTP/1.1" 200 None +2025-04-02 14:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5244 HTTP/1.1" 200 None +2025-04-02 14:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5245 HTTP/1.1" 200 None +2025-04-02 14:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5246 HTTP/1.1" 200 None +2025-04-02 14:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5247 HTTP/1.1" 200 None +2025-04-02 14:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5248 HTTP/1.1" 200 None +2025-04-02 14:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5249 HTTP/1.1" 200 None +2025-04-02 14:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5250 HTTP/1.1" 200 None +2025-04-02 14:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5251 HTTP/1.1" 200 None +2025-04-02 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5252 HTTP/1.1" 200 None +2025-04-02 14:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5253 HTTP/1.1" 200 None +2025-04-02 14:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5254 HTTP/1.1" 200 None +2025-04-02 14:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5255 HTTP/1.1" 200 None +2025-04-02 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5256 HTTP/1.1" 200 None +2025-04-02 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5257 HTTP/1.1" 200 None +2025-04-02 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5258 HTTP/1.1" 200 None +2025-04-02 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5259 HTTP/1.1" 200 None +2025-04-02 14:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5260 HTTP/1.1" 200 None +2025-04-02 14:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5261 HTTP/1.1" 200 None +2025-04-02 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5262 HTTP/1.1" 200 None +2025-04-02 14:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5263 HTTP/1.1" 200 None +2025-04-02 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5264 HTTP/1.1" 200 None +2025-04-02 14:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5265 HTTP/1.1" 200 None +2025-04-02 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5266 HTTP/1.1" 200 None +2025-04-02 14:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5267 HTTP/1.1" 200 None +2025-04-02 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5268 HTTP/1.1" 200 None +2025-04-02 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5269 HTTP/1.1" 200 None +2025-04-02 14:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5270 HTTP/1.1" 200 None +2025-04-02 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5271 HTTP/1.1" 200 None +2025-04-02 14:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5272 HTTP/1.1" 200 None +2025-04-02 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5273 HTTP/1.1" 200 None +2025-04-02 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5274 HTTP/1.1" 200 None +2025-04-02 14:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5275 HTTP/1.1" 200 None +2025-04-02 14:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5276 HTTP/1.1" 200 None +2025-04-02 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5277 HTTP/1.1" 200 None +2025-04-02 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5278 HTTP/1.1" 200 None +2025-04-02 14:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5279 HTTP/1.1" 200 None +2025-04-02 14:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5280 HTTP/1.1" 200 None +2025-04-02 14:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5281 HTTP/1.1" 200 None +2025-04-02 14:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5282 HTTP/1.1" 200 None +2025-04-02 14:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5283 HTTP/1.1" 200 None +2025-04-02 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5284 HTTP/1.1" 200 None +2025-04-02 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5285 HTTP/1.1" 200 None +2025-04-02 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5286 HTTP/1.1" 200 None +2025-04-02 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5287 HTTP/1.1" 200 None +2025-04-02 14:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5288 HTTP/1.1" 200 None +2025-04-02 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5289 HTTP/1.1" 200 None +2025-04-02 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5290 HTTP/1.1" 200 None +2025-04-02 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 14:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5291 HTTP/1.1" 200 None +2025-04-02 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 15:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5291?force=true HTTP/1.1" 200 None +2025-04-02 15:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5290?force=true HTTP/1.1" 200 None +2025-04-02 15:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5289?force=true HTTP/1.1" 200 None +2025-04-02 15:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5288?force=true HTTP/1.1" 200 None +2025-04-02 15:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5287?force=true HTTP/1.1" 200 None +2025-04-02 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5286?force=true HTTP/1.1" 200 None +2025-04-02 15:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5285?force=true HTTP/1.1" 200 None +2025-04-02 15:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5284?force=true HTTP/1.1" 200 None +2025-04-02 15:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5283?force=true HTTP/1.1" 200 None +2025-04-02 15:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5282?force=true HTTP/1.1" 200 None +2025-04-02 15:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5281?force=true HTTP/1.1" 200 None +2025-04-02 15:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5280?force=true HTTP/1.1" 200 None +2025-04-02 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5279?force=true HTTP/1.1" 200 None +2025-04-02 15:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5278?force=true HTTP/1.1" 200 None +2025-04-02 15:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5277?force=true HTTP/1.1" 200 None +2025-04-02 15:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5276?force=true HTTP/1.1" 200 None +2025-04-02 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5275?force=true HTTP/1.1" 200 None +2025-04-02 15:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5274?force=true HTTP/1.1" 200 None +2025-04-02 15:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5273?force=true HTTP/1.1" 200 None +2025-04-02 15:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5272?force=true HTTP/1.1" 200 None +2025-04-02 15:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5271?force=true HTTP/1.1" 200 None +2025-04-02 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5270?force=true HTTP/1.1" 200 None +2025-04-02 15:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5269?force=true HTTP/1.1" 200 None +2025-04-02 15:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5268?force=true HTTP/1.1" 200 None +2025-04-02 15:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5267?force=true HTTP/1.1" 200 None +2025-04-02 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5266?force=true HTTP/1.1" 200 None +2025-04-02 15:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5265?force=true HTTP/1.1" 200 None +2025-04-02 15:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5264?force=true HTTP/1.1" 200 None +2025-04-02 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5263?force=true HTTP/1.1" 200 None +2025-04-02 15:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5262?force=true HTTP/1.1" 200 None +2025-04-02 15:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5261?force=true HTTP/1.1" 200 None +2025-04-02 15:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5260?force=true HTTP/1.1" 200 None +2025-04-02 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5259?force=true HTTP/1.1" 200 None +2025-04-02 15:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5258?force=true HTTP/1.1" 200 None +2025-04-02 15:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5257?force=true HTTP/1.1" 200 None +2025-04-02 15:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5256?force=true HTTP/1.1" 200 None +2025-04-02 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5255?force=true HTTP/1.1" 200 None +2025-04-02 15:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5254?force=true HTTP/1.1" 200 None +2025-04-02 15:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5253?force=true HTTP/1.1" 200 None +2025-04-02 15:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5252?force=true HTTP/1.1" 200 None +2025-04-02 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5251?force=true HTTP/1.1" 200 None +2025-04-02 15:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5250?force=true HTTP/1.1" 200 None +2025-04-02 15:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5249?force=true HTTP/1.1" 200 None +2025-04-02 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5248?force=true HTTP/1.1" 200 None +2025-04-02 15:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5247?force=true HTTP/1.1" 200 None +2025-04-02 15:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5246?force=true HTTP/1.1" 200 None +2025-04-02 15:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5245?force=true HTTP/1.1" 200 None +2025-04-02 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5244?force=true HTTP/1.1" 200 None +2025-04-02 15:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5243?force=true HTTP/1.1" 200 None +2025-04-02 15:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5242?force=true HTTP/1.1" 200 None +2025-04-02 15:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5241?force=true HTTP/1.1" 200 None +2025-04-02 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5240?force=true HTTP/1.1" 200 None +2025-04-02 15:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5239?force=true HTTP/1.1" 200 None +2025-04-02 15:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5238?force=true HTTP/1.1" 200 None +2025-04-02 15:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5237?force=true HTTP/1.1" 200 None +2025-04-02 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5236?force=true HTTP/1.1" 200 None +2025-04-02 15:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5235?force=true HTTP/1.1" 200 None +2025-04-02 15:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5234?force=true HTTP/1.1" 200 None +2025-04-02 15:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5233?force=true HTTP/1.1" 200 None +2025-04-02 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5232?force=true HTTP/1.1" 200 None +2025-04-02 15:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5231?force=true HTTP/1.1" 200 None +2025-04-02 15:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5230?force=true HTTP/1.1" 200 None +2025-04-02 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5229?force=true HTTP/1.1" 200 None +2025-04-02 15:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5228?force=true HTTP/1.1" 200 None +2025-04-02 15:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5227?force=true HTTP/1.1" 200 None +2025-04-02 15:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5226?force=true HTTP/1.1" 200 None +2025-04-02 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5225?force=true HTTP/1.1" 200 None +2025-04-02 15:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5224?force=true HTTP/1.1" 200 None +2025-04-02 15:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5223?force=true HTTP/1.1" 200 None +2025-04-02 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5222?force=true HTTP/1.1" 200 None +2025-04-02 15:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5221?force=true HTTP/1.1" 200 None +2025-04-02 15:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5220?force=true HTTP/1.1" 200 None +2025-04-02 15:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 15:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 15:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5292 HTTP/1.1" 200 None +2025-04-02 15:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5293 HTTP/1.1" 200 None +2025-04-02 15:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5294 HTTP/1.1" 200 None +2025-04-02 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5295 HTTP/1.1" 200 None +2025-04-02 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5296 HTTP/1.1" 200 None +2025-04-02 15:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5297 HTTP/1.1" 200 None +2025-04-02 15:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5298 HTTP/1.1" 200 None +2025-04-02 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5299 HTTP/1.1" 200 None +2025-04-02 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5300 HTTP/1.1" 200 None +2025-04-02 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5301 HTTP/1.1" 200 None +2025-04-02 15:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5302 HTTP/1.1" 200 None +2025-04-02 15:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5303 HTTP/1.1" 200 None +2025-04-02 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5304 HTTP/1.1" 200 None +2025-04-02 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5305 HTTP/1.1" 200 None +2025-04-02 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5306 HTTP/1.1" 200 None +2025-04-02 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5307 HTTP/1.1" 200 None +2025-04-02 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5308 HTTP/1.1" 200 None +2025-04-02 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5309 HTTP/1.1" 200 None +2025-04-02 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5310 HTTP/1.1" 200 None +2025-04-02 15:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5311 HTTP/1.1" 200 None +2025-04-02 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5312 HTTP/1.1" 200 None +2025-04-02 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5313 HTTP/1.1" 200 None +2025-04-02 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5314 HTTP/1.1" 200 None +2025-04-02 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5315 HTTP/1.1" 200 None +2025-04-02 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5316 HTTP/1.1" 200 None +2025-04-02 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5317 HTTP/1.1" 200 None +2025-04-02 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5318 HTTP/1.1" 200 None +2025-04-02 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5319 HTTP/1.1" 200 None +2025-04-02 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5320 HTTP/1.1" 200 None +2025-04-02 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5321 HTTP/1.1" 200 None +2025-04-02 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5322 HTTP/1.1" 200 None +2025-04-02 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5323 HTTP/1.1" 200 None +2025-04-02 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5324 HTTP/1.1" 200 None +2025-04-02 15:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5325 HTTP/1.1" 200 None +2025-04-02 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5326 HTTP/1.1" 200 None +2025-04-02 15:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5327 HTTP/1.1" 200 None +2025-04-02 15:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5328 HTTP/1.1" 200 None +2025-04-02 15:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5329 HTTP/1.1" 200 None +2025-04-02 15:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5330 HTTP/1.1" 200 None +2025-04-02 15:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5331 HTTP/1.1" 200 None +2025-04-02 15:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5332 HTTP/1.1" 200 None +2025-04-02 15:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5333 HTTP/1.1" 200 None +2025-04-02 15:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5334 HTTP/1.1" 200 None +2025-04-02 15:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5335 HTTP/1.1" 200 None +2025-04-02 15:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5336 HTTP/1.1" 200 None +2025-04-02 15:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5337 HTTP/1.1" 200 None +2025-04-02 15:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5338 HTTP/1.1" 200 None +2025-04-02 15:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5339 HTTP/1.1" 200 None +2025-04-02 15:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5340 HTTP/1.1" 200 None +2025-04-02 15:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5341 HTTP/1.1" 200 None +2025-04-02 15:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5342 HTTP/1.1" 200 None +2025-04-02 15:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5343 HTTP/1.1" 200 None +2025-04-02 15:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5344 HTTP/1.1" 200 None +2025-04-02 15:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5345 HTTP/1.1" 200 None +2025-04-02 15:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5346 HTTP/1.1" 200 None +2025-04-02 15:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5347 HTTP/1.1" 200 None +2025-04-02 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5348 HTTP/1.1" 200 None +2025-04-02 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5349 HTTP/1.1" 200 None +2025-04-02 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5350 HTTP/1.1" 200 None +2025-04-02 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5351 HTTP/1.1" 200 None +2025-04-02 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5352 HTTP/1.1" 200 None +2025-04-02 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5353 HTTP/1.1" 200 None +2025-04-02 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5354 HTTP/1.1" 200 None +2025-04-02 15:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5355 HTTP/1.1" 200 None +2025-04-02 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5356 HTTP/1.1" 200 None +2025-04-02 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5357 HTTP/1.1" 200 None +2025-04-02 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5358 HTTP/1.1" 200 None +2025-04-02 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5359 HTTP/1.1" 200 None +2025-04-02 15:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5360 HTTP/1.1" 200 None +2025-04-02 15:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5361 HTTP/1.1" 200 None +2025-04-02 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5362 HTTP/1.1" 200 None +2025-04-02 15:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5363 HTTP/1.1" 200 None +2025-04-02 15:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 15:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5363?force=true HTTP/1.1" 200 None +2025-04-02 15:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5362?force=true HTTP/1.1" 200 None +2025-04-02 15:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5361?force=true HTTP/1.1" 200 None +2025-04-02 15:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5360?force=true HTTP/1.1" 200 None +2025-04-02 15:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5359?force=true HTTP/1.1" 200 None +2025-04-02 15:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5358?force=true HTTP/1.1" 200 None +2025-04-02 15:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5357?force=true HTTP/1.1" 200 None +2025-04-02 15:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5356?force=true HTTP/1.1" 200 None +2025-04-02 15:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5355?force=true HTTP/1.1" 200 None +2025-04-02 15:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5354?force=true HTTP/1.1" 200 None +2025-04-02 15:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5353?force=true HTTP/1.1" 200 None +2025-04-02 15:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5352?force=true HTTP/1.1" 200 None +2025-04-02 15:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5351?force=true HTTP/1.1" 200 None +2025-04-02 15:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5350?force=true HTTP/1.1" 200 None +2025-04-02 15:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5349?force=true HTTP/1.1" 200 None +2025-04-02 15:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5348?force=true HTTP/1.1" 200 None +2025-04-02 15:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5347?force=true HTTP/1.1" 200 None +2025-04-02 15:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5346?force=true HTTP/1.1" 200 None +2025-04-02 15:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5345?force=true HTTP/1.1" 200 None +2025-04-02 15:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5344?force=true HTTP/1.1" 200 None +2025-04-02 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5343?force=true HTTP/1.1" 200 None +2025-04-02 15:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5342?force=true HTTP/1.1" 200 None +2025-04-02 15:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5341?force=true HTTP/1.1" 200 None +2025-04-02 15:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5340?force=true HTTP/1.1" 200 None +2025-04-02 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5339?force=true HTTP/1.1" 200 None +2025-04-02 15:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5338?force=true HTTP/1.1" 200 None +2025-04-02 15:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5337?force=true HTTP/1.1" 200 None +2025-04-02 15:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5336?force=true HTTP/1.1" 200 None +2025-04-02 15:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5335?force=true HTTP/1.1" 200 None +2025-04-02 15:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5334?force=true HTTP/1.1" 200 None +2025-04-02 15:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5333?force=true HTTP/1.1" 200 None +2025-04-02 15:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5332?force=true HTTP/1.1" 200 None +2025-04-02 15:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5331?force=true HTTP/1.1" 200 None +2025-04-02 15:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5330?force=true HTTP/1.1" 200 None +2025-04-02 15:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5329?force=true HTTP/1.1" 200 None +2025-04-02 15:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5328?force=true HTTP/1.1" 200 None +2025-04-02 15:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5327?force=true HTTP/1.1" 200 None +2025-04-02 15:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5326?force=true HTTP/1.1" 200 None +2025-04-02 15:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5325?force=true HTTP/1.1" 200 None +2025-04-02 15:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5324?force=true HTTP/1.1" 200 None +2025-04-02 15:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5323?force=true HTTP/1.1" 200 None +2025-04-02 15:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5322?force=true HTTP/1.1" 200 None +2025-04-02 15:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5321?force=true HTTP/1.1" 200 None +2025-04-02 15:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5320?force=true HTTP/1.1" 200 None +2025-04-02 15:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5319?force=true HTTP/1.1" 200 None +2025-04-02 15:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5318?force=true HTTP/1.1" 200 None +2025-04-02 15:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5317?force=true HTTP/1.1" 200 None +2025-04-02 15:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5316?force=true HTTP/1.1" 200 None +2025-04-02 15:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5315?force=true HTTP/1.1" 200 None +2025-04-02 15:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5314?force=true HTTP/1.1" 200 None +2025-04-02 15:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5313?force=true HTTP/1.1" 200 None +2025-04-02 15:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5312?force=true HTTP/1.1" 200 None +2025-04-02 15:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5311?force=true HTTP/1.1" 200 None +2025-04-02 15:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5310?force=true HTTP/1.1" 200 None +2025-04-02 15:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5309?force=true HTTP/1.1" 200 None +2025-04-02 15:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5308?force=true HTTP/1.1" 200 None +2025-04-02 15:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5307?force=true HTTP/1.1" 200 None +2025-04-02 15:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5306?force=true HTTP/1.1" 200 None +2025-04-02 15:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5305?force=true HTTP/1.1" 200 None +2025-04-02 15:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5304?force=true HTTP/1.1" 200 None +2025-04-02 15:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5303?force=true HTTP/1.1" 200 None +2025-04-02 15:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5302?force=true HTTP/1.1" 200 None +2025-04-02 15:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5301?force=true HTTP/1.1" 200 None +2025-04-02 15:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5300?force=true HTTP/1.1" 200 None +2025-04-02 15:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5299?force=true HTTP/1.1" 200 None +2025-04-02 15:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5298?force=true HTTP/1.1" 200 None +2025-04-02 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5297?force=true HTTP/1.1" 200 None +2025-04-02 15:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5296?force=true HTTP/1.1" 200 None +2025-04-02 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5295?force=true HTTP/1.1" 200 None +2025-04-02 15:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5294?force=true HTTP/1.1" 200 None +2025-04-02 15:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5293?force=true HTTP/1.1" 200 None +2025-04-02 15:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5292?force=true HTTP/1.1" 200 None +2025-04-02 15:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 15:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 15:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 15:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5364 HTTP/1.1" 200 None +2025-04-02 15:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5365 HTTP/1.1" 200 None +2025-04-02 15:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5366 HTTP/1.1" 200 None +2025-04-02 15:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5367 HTTP/1.1" 200 None +2025-04-02 15:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5368 HTTP/1.1" 200 None +2025-04-02 15:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5369 HTTP/1.1" 200 None +2025-04-02 15:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5370 HTTP/1.1" 200 None +2025-04-02 15:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5371 HTTP/1.1" 200 None +2025-04-02 15:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5372 HTTP/1.1" 200 None +2025-04-02 15:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5373 HTTP/1.1" 200 None +2025-04-02 15:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5374 HTTP/1.1" 200 None +2025-04-02 15:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5375 HTTP/1.1" 200 None +2025-04-02 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5376 HTTP/1.1" 200 None +2025-04-02 15:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5377 HTTP/1.1" 200 None +2025-04-02 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5378 HTTP/1.1" 200 None +2025-04-02 15:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5379 HTTP/1.1" 200 None +2025-04-02 15:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5380 HTTP/1.1" 200 None +2025-04-02 15:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5381 HTTP/1.1" 200 None +2025-04-02 15:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5382 HTTP/1.1" 200 None +2025-04-02 15:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5383 HTTP/1.1" 200 None +2025-04-02 15:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5384 HTTP/1.1" 200 None +2025-04-02 15:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5385 HTTP/1.1" 200 None +2025-04-02 15:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5386 HTTP/1.1" 200 None +2025-04-02 15:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5387 HTTP/1.1" 200 None +2025-04-02 15:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5388 HTTP/1.1" 200 None +2025-04-02 15:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5389 HTTP/1.1" 200 None +2025-04-02 15:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5390 HTTP/1.1" 200 None +2025-04-02 15:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5391 HTTP/1.1" 200 None +2025-04-02 15:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5392 HTTP/1.1" 200 None +2025-04-02 15:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5393 HTTP/1.1" 200 None +2025-04-02 15:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5394 HTTP/1.1" 200 None +2025-04-02 15:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5395 HTTP/1.1" 200 None +2025-04-02 15:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5396 HTTP/1.1" 200 None +2025-04-02 15:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5397 HTTP/1.1" 200 None +2025-04-02 15:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5398 HTTP/1.1" 200 None +2025-04-02 15:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5399 HTTP/1.1" 200 None +2025-04-02 15:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5400 HTTP/1.1" 200 None +2025-04-02 15:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5401 HTTP/1.1" 200 None +2025-04-02 15:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5402 HTTP/1.1" 200 None +2025-04-02 15:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5403 HTTP/1.1" 200 None +2025-04-02 15:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5404 HTTP/1.1" 200 None +2025-04-02 15:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5405 HTTP/1.1" 200 None +2025-04-02 15:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5406 HTTP/1.1" 200 None +2025-04-02 15:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5407 HTTP/1.1" 200 None +2025-04-02 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5408 HTTP/1.1" 200 None +2025-04-02 15:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5409 HTTP/1.1" 200 None +2025-04-02 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5410 HTTP/1.1" 200 None +2025-04-02 15:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5411 HTTP/1.1" 200 None +2025-04-02 15:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5412 HTTP/1.1" 200 None +2025-04-02 15:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5413 HTTP/1.1" 200 None +2025-04-02 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5414 HTTP/1.1" 200 None +2025-04-02 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5415 HTTP/1.1" 200 None +2025-04-02 15:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5416 HTTP/1.1" 200 None +2025-04-02 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5417 HTTP/1.1" 200 None +2025-04-02 15:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5418 HTTP/1.1" 200 None +2025-04-02 15:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5419 HTTP/1.1" 200 None +2025-04-02 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5420 HTTP/1.1" 200 None +2025-04-02 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5421 HTTP/1.1" 200 None +2025-04-02 15:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5422 HTTP/1.1" 200 None +2025-04-02 15:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5423 HTTP/1.1" 200 None +2025-04-02 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5424 HTTP/1.1" 200 None +2025-04-02 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5425 HTTP/1.1" 200 None +2025-04-02 15:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5426 HTTP/1.1" 200 None +2025-04-02 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5427 HTTP/1.1" 200 None +2025-04-02 15:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5428 HTTP/1.1" 200 None +2025-04-02 15:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5429 HTTP/1.1" 200 None +2025-04-02 15:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5430 HTTP/1.1" 200 None +2025-04-02 15:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5431 HTTP/1.1" 200 None +2025-04-02 15:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5432 HTTP/1.1" 200 None +2025-04-02 15:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5433 HTTP/1.1" 200 None +2025-04-02 15:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5434 HTTP/1.1" 200 None +2025-04-02 15:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5435 HTTP/1.1" 200 None +2025-04-02 15:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5436 HTTP/1.1" 200 None +2025-04-02 15:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5437 HTTP/1.1" 200 None +2025-04-02 15:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5438 HTTP/1.1" 200 None +2025-04-02 15:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5439 HTTP/1.1" 200 None +2025-04-02 15:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5439?force=true HTTP/1.1" 200 None +2025-04-02 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5438?force=true HTTP/1.1" 200 None +2025-04-02 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5437?force=true HTTP/1.1" 200 None +2025-04-02 15:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5436?force=true HTTP/1.1" 200 None +2025-04-02 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5435?force=true HTTP/1.1" 200 None +2025-04-02 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5434?force=true HTTP/1.1" 200 None +2025-04-02 15:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5433?force=true HTTP/1.1" 200 None +2025-04-02 15:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5432?force=true HTTP/1.1" 200 None +2025-04-02 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5431?force=true HTTP/1.1" 200 None +2025-04-02 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5430?force=true HTTP/1.1" 200 None +2025-04-02 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5429?force=true HTTP/1.1" 200 None +2025-04-02 15:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5428?force=true HTTP/1.1" 200 None +2025-04-02 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5427?force=true HTTP/1.1" 200 None +2025-04-02 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5426?force=true HTTP/1.1" 200 None +2025-04-02 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5425?force=true HTTP/1.1" 200 None +2025-04-02 15:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5424?force=true HTTP/1.1" 200 None +2025-04-02 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5423?force=true HTTP/1.1" 200 None +2025-04-02 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5422?force=true HTTP/1.1" 200 None +2025-04-02 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5421?force=true HTTP/1.1" 200 None +2025-04-02 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5420?force=true HTTP/1.1" 200 None +2025-04-02 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5419?force=true HTTP/1.1" 200 None +2025-04-02 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5418?force=true HTTP/1.1" 200 None +2025-04-02 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5417?force=true HTTP/1.1" 200 None +2025-04-02 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5416?force=true HTTP/1.1" 200 None +2025-04-02 15:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5415?force=true HTTP/1.1" 200 None +2025-04-02 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5414?force=true HTTP/1.1" 200 None +2025-04-02 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5413?force=true HTTP/1.1" 200 None +2025-04-02 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5412?force=true HTTP/1.1" 200 None +2025-04-02 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5411?force=true HTTP/1.1" 200 None +2025-04-02 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5410?force=true HTTP/1.1" 200 None +2025-04-02 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5409?force=true HTTP/1.1" 200 None +2025-04-02 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5408?force=true HTTP/1.1" 200 None +2025-04-02 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5407?force=true HTTP/1.1" 200 None +2025-04-02 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5406?force=true HTTP/1.1" 200 None +2025-04-02 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5405?force=true HTTP/1.1" 200 None +2025-04-02 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5404?force=true HTTP/1.1" 200 None +2025-04-02 15:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5403?force=true HTTP/1.1" 200 None +2025-04-02 15:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5402?force=true HTTP/1.1" 200 None +2025-04-02 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5401?force=true HTTP/1.1" 200 None +2025-04-02 15:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5400?force=true HTTP/1.1" 200 None +2025-04-02 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5399?force=true HTTP/1.1" 200 None +2025-04-02 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5398?force=true HTTP/1.1" 200 None +2025-04-02 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5397?force=true HTTP/1.1" 200 None +2025-04-02 15:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5396?force=true HTTP/1.1" 200 None +2025-04-02 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5395?force=true HTTP/1.1" 200 None +2025-04-02 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5394?force=true HTTP/1.1" 200 None +2025-04-02 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5393?force=true HTTP/1.1" 200 None +2025-04-02 15:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5392?force=true HTTP/1.1" 200 None +2025-04-02 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5391?force=true HTTP/1.1" 200 None +2025-04-02 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5390?force=true HTTP/1.1" 200 None +2025-04-02 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5389?force=true HTTP/1.1" 200 None +2025-04-02 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5388?force=true HTTP/1.1" 200 None +2025-04-02 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5387?force=true HTTP/1.1" 200 None +2025-04-02 15:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5386?force=true HTTP/1.1" 200 None +2025-04-02 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5385?force=true HTTP/1.1" 200 None +2025-04-02 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5384?force=true HTTP/1.1" 200 None +2025-04-02 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5383?force=true HTTP/1.1" 200 None +2025-04-02 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5382?force=true HTTP/1.1" 200 None +2025-04-02 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5381?force=true HTTP/1.1" 200 None +2025-04-02 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5380?force=true HTTP/1.1" 200 None +2025-04-02 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5379?force=true HTTP/1.1" 200 None +2025-04-02 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5378?force=true HTTP/1.1" 200 None +2025-04-02 15:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5377?force=true HTTP/1.1" 200 None +2025-04-02 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5376?force=true HTTP/1.1" 200 None +2025-04-02 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5375?force=true HTTP/1.1" 200 None +2025-04-02 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5374?force=true HTTP/1.1" 200 None +2025-04-02 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5373?force=true HTTP/1.1" 200 None +2025-04-02 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5372?force=true HTTP/1.1" 200 None +2025-04-02 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5371?force=true HTTP/1.1" 200 None +2025-04-02 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5370?force=true HTTP/1.1" 200 None +2025-04-02 15:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5369?force=true HTTP/1.1" 200 None +2025-04-02 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5368?force=true HTTP/1.1" 200 None +2025-04-02 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5367?force=true HTTP/1.1" 200 None +2025-04-02 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5366?force=true HTTP/1.1" 200 None +2025-04-02 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5365?force=true HTTP/1.1" 200 None +2025-04-02 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5364?force=true HTTP/1.1" 200 None +2025-04-02 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5440 HTTP/1.1" 200 None +2025-04-02 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5441 HTTP/1.1" 200 None +2025-04-02 15:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5442 HTTP/1.1" 200 None +2025-04-02 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5443 HTTP/1.1" 200 None +2025-04-02 15:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5444 HTTP/1.1" 200 None +2025-04-02 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5445 HTTP/1.1" 200 None +2025-04-02 15:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5446 HTTP/1.1" 200 None +2025-04-02 15:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5447 HTTP/1.1" 200 None +2025-04-02 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5448 HTTP/1.1" 200 None +2025-04-02 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5449 HTTP/1.1" 200 None +2025-04-02 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5450 HTTP/1.1" 200 None +2025-04-02 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5451 HTTP/1.1" 200 None +2025-04-02 15:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5452 HTTP/1.1" 200 None +2025-04-02 15:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5453 HTTP/1.1" 200 None +2025-04-02 15:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5454 HTTP/1.1" 200 None +2025-04-02 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5455 HTTP/1.1" 200 None +2025-04-02 15:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5456 HTTP/1.1" 200 None +2025-04-02 15:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5457 HTTP/1.1" 200 None +2025-04-02 15:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5458 HTTP/1.1" 200 None +2025-04-02 15:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5459 HTTP/1.1" 200 None +2025-04-02 15:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5460 HTTP/1.1" 200 None +2025-04-02 15:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5461 HTTP/1.1" 200 None +2025-04-02 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5462 HTTP/1.1" 200 None +2025-04-02 15:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5463 HTTP/1.1" 200 None +2025-04-02 15:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5464 HTTP/1.1" 200 None +2025-04-02 15:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5465 HTTP/1.1" 200 None +2025-04-02 15:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5466 HTTP/1.1" 200 None +2025-04-02 15:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5467 HTTP/1.1" 200 None +2025-04-02 15:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5468 HTTP/1.1" 200 None +2025-04-02 15:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5469 HTTP/1.1" 200 None +2025-04-02 15:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5470 HTTP/1.1" 200 None +2025-04-02 15:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5471 HTTP/1.1" 200 None +2025-04-02 15:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5472 HTTP/1.1" 200 None +2025-04-02 15:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5473 HTTP/1.1" 200 None +2025-04-02 15:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5474 HTTP/1.1" 200 None +2025-04-02 15:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5475 HTTP/1.1" 200 None +2025-04-02 15:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5476 HTTP/1.1" 200 None +2025-04-02 15:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5477 HTTP/1.1" 200 None +2025-04-02 15:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5478 HTTP/1.1" 200 None +2025-04-02 15:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5479 HTTP/1.1" 200 None +2025-04-02 15:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5480 HTTP/1.1" 200 None +2025-04-02 15:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5481 HTTP/1.1" 200 None +2025-04-02 15:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5482 HTTP/1.1" 200 None +2025-04-02 15:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5483 HTTP/1.1" 200 None +2025-04-02 15:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5484 HTTP/1.1" 200 None +2025-04-02 15:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5485 HTTP/1.1" 200 None +2025-04-02 15:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5486 HTTP/1.1" 200 None +2025-04-02 15:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5487 HTTP/1.1" 200 None +2025-04-02 15:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5488 HTTP/1.1" 200 None +2025-04-02 15:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5489 HTTP/1.1" 200 None +2025-04-02 15:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5490 HTTP/1.1" 200 None +2025-04-02 15:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5491 HTTP/1.1" 200 None +2025-04-02 15:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5492 HTTP/1.1" 200 None +2025-04-02 15:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5493 HTTP/1.1" 200 None +2025-04-02 15:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5494 HTTP/1.1" 200 None +2025-04-02 15:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5495 HTTP/1.1" 200 None +2025-04-02 15:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5496 HTTP/1.1" 200 None +2025-04-02 15:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5497 HTTP/1.1" 200 None +2025-04-02 15:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5498 HTTP/1.1" 200 None +2025-04-02 15:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5499 HTTP/1.1" 200 None +2025-04-02 15:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5500 HTTP/1.1" 200 None +2025-04-02 15:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5501 HTTP/1.1" 200 None +2025-04-02 15:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5502 HTTP/1.1" 200 None +2025-04-02 15:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5503 HTTP/1.1" 200 None +2025-04-02 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5504 HTTP/1.1" 200 None +2025-04-02 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5505 HTTP/1.1" 200 None +2025-04-02 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5506 HTTP/1.1" 200 None +2025-04-02 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5507 HTTP/1.1" 200 None +2025-04-02 15:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5508 HTTP/1.1" 200 None +2025-04-02 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5509 HTTP/1.1" 200 None +2025-04-02 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5510 HTTP/1.1" 200 None +2025-04-02 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5511 HTTP/1.1" 200 None +2025-04-02 15:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5512 HTTP/1.1" 200 None +2025-04-02 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5513 HTTP/1.1" 200 None +2025-04-02 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5514 HTTP/1.1" 200 None +2025-04-02 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5515 HTTP/1.1" 200 None +2025-04-02 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5516 HTTP/1.1" 200 None +2025-04-02 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5517 HTTP/1.1" 200 None +2025-04-02 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5518 HTTP/1.1" 200 None +2025-04-02 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5519 HTTP/1.1" 200 None +2025-04-02 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5520 HTTP/1.1" 200 None +2025-04-02 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5521 HTTP/1.1" 200 None +2025-04-02 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5522 HTTP/1.1" 200 None +2025-04-02 15:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5523 HTTP/1.1" 200 None +2025-04-02 15:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5524 HTTP/1.1" 200 None +2025-04-02 15:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5525 HTTP/1.1" 200 None +2025-04-02 15:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5526 HTTP/1.1" 200 None +2025-04-02 15:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5527 HTTP/1.1" 200 None +2025-04-02 15:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5528 HTTP/1.1" 200 None +2025-04-02 15:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5529 HTTP/1.1" 200 None +2025-04-02 15:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5530 HTTP/1.1" 200 None +2025-04-02 15:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5531 HTTP/1.1" 200 None +2025-04-02 15:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5532 HTTP/1.1" 200 None +2025-04-02 15:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5533 HTTP/1.1" 200 None +2025-04-02 15:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5534 HTTP/1.1" 200 None +2025-04-02 15:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5535 HTTP/1.1" 200 None +2025-04-02 15:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5536 HTTP/1.1" 200 None +2025-04-02 15:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5537 HTTP/1.1" 200 None +2025-04-02 15:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 15:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 15:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5538 HTTP/1.1" 200 None +2025-04-02 15:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 15:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 15:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-02 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5538?force=true HTTP/1.1" 200 None +2025-04-02 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5537?force=true HTTP/1.1" 200 None +2025-04-02 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5536?force=true HTTP/1.1" 200 None +2025-04-02 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5535?force=true HTTP/1.1" 200 None +2025-04-02 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5534?force=true HTTP/1.1" 200 None +2025-04-02 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5533?force=true HTTP/1.1" 200 None +2025-04-02 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5532?force=true HTTP/1.1" 200 None +2025-04-02 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5531?force=true HTTP/1.1" 200 None +2025-04-02 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5530?force=true HTTP/1.1" 200 None +2025-04-02 16:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5529?force=true HTTP/1.1" 200 None +2025-04-02 16:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5528?force=true HTTP/1.1" 200 None +2025-04-02 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5527?force=true HTTP/1.1" 200 None +2025-04-02 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5526?force=true HTTP/1.1" 200 None +2025-04-02 16:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5525?force=true HTTP/1.1" 200 None +2025-04-02 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5524?force=true HTTP/1.1" 200 None +2025-04-02 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5523?force=true HTTP/1.1" 200 None +2025-04-02 16:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5522?force=true HTTP/1.1" 200 None +2025-04-02 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5521?force=true HTTP/1.1" 200 None +2025-04-02 16:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5520?force=true HTTP/1.1" 200 None +2025-04-02 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5519?force=true HTTP/1.1" 200 None +2025-04-02 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5518?force=true HTTP/1.1" 200 None +2025-04-02 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5517?force=true HTTP/1.1" 200 None +2025-04-02 16:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5516?force=true HTTP/1.1" 200 None +2025-04-02 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5515?force=true HTTP/1.1" 200 None +2025-04-02 16:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5514?force=true HTTP/1.1" 200 None +2025-04-02 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5513?force=true HTTP/1.1" 200 None +2025-04-02 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5512?force=true HTTP/1.1" 200 None +2025-04-02 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5511?force=true HTTP/1.1" 200 None +2025-04-02 16:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5510?force=true HTTP/1.1" 200 None +2025-04-02 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5509?force=true HTTP/1.1" 200 None +2025-04-02 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5508?force=true HTTP/1.1" 200 None +2025-04-02 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5507?force=true HTTP/1.1" 200 None +2025-04-02 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5506?force=true HTTP/1.1" 200 None +2025-04-02 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5505?force=true HTTP/1.1" 200 None +2025-04-02 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5504?force=true HTTP/1.1" 200 None +2025-04-02 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5503?force=true HTTP/1.1" 200 None +2025-04-02 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5502?force=true HTTP/1.1" 200 None +2025-04-02 16:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5501?force=true HTTP/1.1" 200 None +2025-04-02 16:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5500?force=true HTTP/1.1" 200 None +2025-04-02 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5499?force=true HTTP/1.1" 200 None +2025-04-02 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5498?force=true HTTP/1.1" 200 None +2025-04-02 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5497?force=true HTTP/1.1" 200 None +2025-04-02 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5496?force=true HTTP/1.1" 200 None +2025-04-02 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5495?force=true HTTP/1.1" 200 None +2025-04-02 16:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5494?force=true HTTP/1.1" 200 None +2025-04-02 16:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5493?force=true HTTP/1.1" 200 None +2025-04-02 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5492?force=true HTTP/1.1" 200 None +2025-04-02 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5491?force=true HTTP/1.1" 200 None +2025-04-02 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5490?force=true HTTP/1.1" 200 None +2025-04-02 16:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5489?force=true HTTP/1.1" 200 None +2025-04-02 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5488?force=true HTTP/1.1" 200 None +2025-04-02 16:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5487?force=true HTTP/1.1" 200 None +2025-04-02 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5486?force=true HTTP/1.1" 200 None +2025-04-02 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5485?force=true HTTP/1.1" 200 None +2025-04-02 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5484?force=true HTTP/1.1" 200 None +2025-04-02 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5483?force=true HTTP/1.1" 200 None +2025-04-02 16:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5482?force=true HTTP/1.1" 200 None +2025-04-02 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5481?force=true HTTP/1.1" 200 None +2025-04-02 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5480?force=true HTTP/1.1" 200 None +2025-04-02 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5479?force=true HTTP/1.1" 200 None +2025-04-02 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5478?force=true HTTP/1.1" 200 None +2025-04-02 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5477?force=true HTTP/1.1" 200 None +2025-04-02 16:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5476?force=true HTTP/1.1" 200 None +2025-04-02 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5475?force=true HTTP/1.1" 200 None +2025-04-02 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5474?force=true HTTP/1.1" 200 None +2025-04-02 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5473?force=true HTTP/1.1" 200 None +2025-04-02 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5472?force=true HTTP/1.1" 200 None +2025-04-02 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5471?force=true HTTP/1.1" 200 None +2025-04-02 16:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5470?force=true HTTP/1.1" 200 None +2025-04-02 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5469?force=true HTTP/1.1" 200 None +2025-04-02 16:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5468?force=true HTTP/1.1" 200 None +2025-04-02 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5467?force=true HTTP/1.1" 200 None +2025-04-02 16:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5466?force=true HTTP/1.1" 200 None +2025-04-02 16:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5465?force=true HTTP/1.1" 200 None +2025-04-02 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5464?force=true HTTP/1.1" 200 None +2025-04-02 16:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5463?force=true HTTP/1.1" 200 None +2025-04-02 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5462?force=true HTTP/1.1" 200 None +2025-04-02 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5461?force=true HTTP/1.1" 200 None +2025-04-02 16:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5460?force=true HTTP/1.1" 200 None +2025-04-02 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5459?force=true HTTP/1.1" 200 None +2025-04-02 16:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5458?force=true HTTP/1.1" 200 None +2025-04-02 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5457?force=true HTTP/1.1" 200 None +2025-04-02 16:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5456?force=true HTTP/1.1" 200 None +2025-04-02 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5455?force=true HTTP/1.1" 200 None +2025-04-02 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5454?force=true HTTP/1.1" 200 None +2025-04-02 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5453?force=true HTTP/1.1" 200 None +2025-04-02 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5452?force=true HTTP/1.1" 200 None +2025-04-02 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5451?force=true HTTP/1.1" 200 None +2025-04-02 16:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5450?force=true HTTP/1.1" 200 None +2025-04-02 16:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5449?force=true HTTP/1.1" 200 None +2025-04-02 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5448?force=true HTTP/1.1" 200 None +2025-04-02 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5447?force=true HTTP/1.1" 200 None +2025-04-02 16:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5446?force=true HTTP/1.1" 200 None +2025-04-02 16:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5445?force=true HTTP/1.1" 200 None +2025-04-02 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5444?force=true HTTP/1.1" 200 None +2025-04-02 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5443?force=true HTTP/1.1" 200 None +2025-04-02 16:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5442?force=true HTTP/1.1" 200 None +2025-04-02 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5441?force=true HTTP/1.1" 200 None +2025-04-02 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5440?force=true HTTP/1.1" 200 None +2025-04-02 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 16:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5539 HTTP/1.1" 200 None +2025-04-02 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5540 HTTP/1.1" 200 None +2025-04-02 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5541 HTTP/1.1" 200 None +2025-04-02 16:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5542 HTTP/1.1" 200 None +2025-04-02 16:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5543 HTTP/1.1" 200 None +2025-04-02 16:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5544 HTTP/1.1" 200 None +2025-04-02 16:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5545 HTTP/1.1" 200 None +2025-04-02 16:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5546 HTTP/1.1" 200 None +2025-04-02 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5548 HTTP/1.1" 200 None +2025-04-02 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5549 HTTP/1.1" 200 None +2025-04-02 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5550 HTTP/1.1" 200 None +2025-04-02 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5551 HTTP/1.1" 200 None +2025-04-02 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5552 HTTP/1.1" 200 None +2025-04-02 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5553 HTTP/1.1" 200 None +2025-04-02 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5554 HTTP/1.1" 200 None +2025-04-02 16:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5555 HTTP/1.1" 200 None +2025-04-02 16:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5556 HTTP/1.1" 200 None +2025-04-02 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5557 HTTP/1.1" 200 None +2025-04-02 16:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5558 HTTP/1.1" 200 None +2025-04-02 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5559 HTTP/1.1" 200 None +2025-04-02 16:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5560 HTTP/1.1" 200 None +2025-04-02 16:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5562 HTTP/1.1" 200 None +2025-04-02 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5563 HTTP/1.1" 200 None +2025-04-02 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5564 HTTP/1.1" 200 None +2025-04-02 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5565 HTTP/1.1" 200 None +2025-04-02 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5566 HTTP/1.1" 200 None +2025-04-02 16:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5567 HTTP/1.1" 502 157 +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 502 157 +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 502 157 +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 502 157 +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 502 157 +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-04-02 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 502 157 +2025-04-02 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/None HTTP/1.1" 404 None +2025-04-02 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/452 HTTP/1.1" 400 None +2025-04-02 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/453 HTTP/1.1" 400 None +2025-04-02 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/454 HTTP/1.1" 400 None +2025-04-02 16:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/455 HTTP/1.1" 400 None +2025-04-02 16:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/456 HTTP/1.1" 400 None +2025-04-02 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/457 HTTP/1.1" 400 None +2025-04-02 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/458 HTTP/1.1" 200 None +2025-04-02 16:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/458 HTTP/1.1" 400 None +2025-04-02 16:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/459 HTTP/1.1" 200 None +2025-04-02 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/459 HTTP/1.1" 400 None +2025-04-02 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/460 HTTP/1.1" 200 None +2025-04-02 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/460 HTTP/1.1" 400 None +2025-04-02 16:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/461 HTTP/1.1" 200 None +2025-04-02 16:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/461 HTTP/1.1" 400 None +2025-04-02 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/462 HTTP/1.1" 400 None +2025-04-02 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/463 HTTP/1.1" 200 None +2025-04-02 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/463 HTTP/1.1" 400 None +2025-04-02 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/464 HTTP/1.1" 200 None +2025-04-02 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/464 HTTP/1.1" 400 None +2025-04-02 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/465 HTTP/1.1" 200 None +2025-04-02 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/465 HTTP/1.1" 400 None +2025-04-02 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/466 HTTP/1.1" 200 None +2025-04-02 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/466 HTTP/1.1" 400 None +2025-04-02 16:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/467 HTTP/1.1" 400 None +2025-04-02 16:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/468 HTTP/1.1" 200 None +2025-04-02 16:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/468 HTTP/1.1" 400 None +2025-04-02 16:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/469 HTTP/1.1" 200 None +2025-04-02 16:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/469 HTTP/1.1" 400 None +2025-04-02 16:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-02 16:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/470 HTTP/1.1" 200 None +2025-04-02 16:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-02 16:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/470 HTTP/1.1" 400 None +2025-04-02 16:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-02 16:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-02 16:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-02 16:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-02 16:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-02 16:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-02 16:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/61/terms HTTP/1.1" 201 None +2025-04-02 16:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/61/terms HTTP/1.1" 201 None +2025-04-02 16:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/61/terms HTTP/1.1" 201 None +2025-04-02 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/61/terms HTTP/1.1" 201 None +2025-04-02 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/61/terms HTTP/1.1" 201 None +2025-04-02 16:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/59/terms HTTP/1.1" 201 None +2025-04-02 16:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/59/terms HTTP/1.1" 201 None +2025-04-02 16:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/63/terms HTTP/1.1" 201 None +2025-04-02 16:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/63/terms HTTP/1.1" 201 None +2025-04-02 16:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/63/terms HTTP/1.1" 201 None +2025-04-02 16:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/63/terms HTTP/1.1" 400 None +2025-04-02 16:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/58/terms HTTP/1.1" 201 None +2025-04-02 16:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/58/terms HTTP/1.1" 201 None +2025-04-02 16:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/60/terms HTTP/1.1" 201 None +2025-04-02 16:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/60/terms HTTP/1.1" 201 None +2025-04-02 16:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/60/terms HTTP/1.1" 201 None +2025-04-02 16:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/60/terms HTTP/1.1" 201 None +2025-04-02 16:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/60/terms HTTP/1.1" 201 None +2025-04-02 16:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/62/terms HTTP/1.1" 201 None +2025-04-02 16:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/62/terms HTTP/1.1" 201 None +2025-04-02 16:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 16:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 16:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5573 HTTP/1.1" 200 None +2025-04-02 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5574 HTTP/1.1" 200 None +2025-04-02 16:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5575 HTTP/1.1" 200 None +2025-04-02 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5576 HTTP/1.1" 200 None +2025-04-02 16:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5577 HTTP/1.1" 200 None +2025-04-02 16:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5578 HTTP/1.1" 200 None +2025-04-02 16:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5579 HTTP/1.1" 200 None +2025-04-02 16:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5580 HTTP/1.1" 200 None +2025-04-02 16:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5581 HTTP/1.1" 200 None +2025-04-02 16:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5582 HTTP/1.1" 200 None +2025-04-02 16:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5583 HTTP/1.1" 200 None +2025-04-02 16:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5584 HTTP/1.1" 200 None +2025-04-02 16:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5585 HTTP/1.1" 200 None +2025-04-02 16:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 16:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 16:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 16:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 16:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5586 HTTP/1.1" 200 None +2025-04-02 17:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5587 HTTP/1.1" 200 None +2025-04-02 17:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5588 HTTP/1.1" 200 None +2025-04-02 17:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5589 HTTP/1.1" 200 None +2025-04-02 17:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5590 HTTP/1.1" 200 None +2025-04-02 17:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5591 HTTP/1.1" 200 None +2025-04-02 17:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5592 HTTP/1.1" 200 None +2025-04-02 17:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5593 HTTP/1.1" 200 None +2025-04-02 17:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:26:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:26:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5594 HTTP/1.1" 200 None +2025-04-02 17:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5595 HTTP/1.1" 200 None +2025-04-02 17:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5596 HTTP/1.1" 200 None +2025-04-02 17:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5597 HTTP/1.1" 200 None +2025-04-02 17:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5598 HTTP/1.1" 200 None +2025-04-02 17:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5599 HTTP/1.1" 200 None +2025-04-02 17:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5600 HTTP/1.1" 200 None +2025-04-02 17:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-02 17:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-02 17:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 17:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5601 HTTP/1.1" 200 None +2025-04-02 17:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5567?force=true HTTP/1.1" 200 None +2025-04-02 20:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5566?force=true HTTP/1.1" 200 None +2025-04-02 20:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5565?force=true HTTP/1.1" 200 None +2025-04-02 20:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5564?force=true HTTP/1.1" 200 None +2025-04-02 20:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5563?force=true HTTP/1.1" 200 None +2025-04-02 20:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5562?force=true HTTP/1.1" 200 None +2025-04-02 20:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5560?force=true HTTP/1.1" 200 None +2025-04-02 20:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5559?force=true HTTP/1.1" 200 None +2025-04-02 20:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5558?force=true HTTP/1.1" 200 None +2025-04-02 20:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5557?force=true HTTP/1.1" 200 None +2025-04-02 20:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5556?force=true HTTP/1.1" 200 None +2025-04-02 20:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5555?force=true HTTP/1.1" 200 None +2025-04-02 20:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5554?force=true HTTP/1.1" 200 None +2025-04-02 20:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5553?force=true HTTP/1.1" 200 None +2025-04-02 20:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5552?force=true HTTP/1.1" 200 None +2025-04-02 20:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5551?force=true HTTP/1.1" 200 None +2025-04-02 20:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5550?force=true HTTP/1.1" 200 None +2025-04-02 20:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5549?force=true HTTP/1.1" 200 None +2025-04-02 20:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5548?force=true HTTP/1.1" 200 None +2025-04-02 20:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5546?force=true HTTP/1.1" 200 None +2025-04-02 20:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5545?force=true HTTP/1.1" 200 None +2025-04-02 20:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5544?force=true HTTP/1.1" 200 None +2025-04-02 20:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5543?force=true HTTP/1.1" 200 None +2025-04-02 20:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5542?force=true HTTP/1.1" 200 None +2025-04-02 20:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5541?force=true HTTP/1.1" 200 None +2025-04-02 20:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5540?force=true HTTP/1.1" 200 None +2025-04-02 20:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wp/v2/media/5539?force=true HTTP/1.1" 200 None +2025-04-02 20:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 20:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/61?force=True HTTP/1.1" 200 None +2025-04-02 20:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/59?force=True HTTP/1.1" 200 None +2025-04-02 20:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/63?force=True HTTP/1.1" 200 None +2025-04-02 20:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/58?force=True HTTP/1.1" 200 None +2025-04-02 20:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/57?force=True HTTP/1.1" 200 None +2025-04-02 20:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/60?force=True HTTP/1.1" 200 None +2025-04-02 20:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/attributes/62?force=True HTTP/1.1" 200 None +2025-04-02 20:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=2 HTTP/1.1" 200 None +2025-04-02 20:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5601?force=True HTTP/1.1" 200 None +2025-04-02 20:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5600?force=True HTTP/1.1" 200 None +2025-04-02 20:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5599?force=True HTTP/1.1" 200 None +2025-04-02 20:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5598?force=True HTTP/1.1" 200 None +2025-04-02 20:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5597?force=True HTTP/1.1" 200 None +2025-04-02 20:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5596?force=True HTTP/1.1" 200 None +2025-04-02 20:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5595?force=True HTTP/1.1" 200 None +2025-04-02 20:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5594?force=True HTTP/1.1" 200 None +2025-04-02 20:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5593?force=True HTTP/1.1" 200 None +2025-04-02 20:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5592?force=True HTTP/1.1" 200 None +2025-04-02 20:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5591?force=True HTTP/1.1" 200 None +2025-04-02 20:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5590?force=True HTTP/1.1" 200 None +2025-04-02 20:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5589?force=True HTTP/1.1" 200 None +2025-04-02 20:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5588?force=True HTTP/1.1" 200 None +2025-04-02 20:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5587?force=True HTTP/1.1" 200 None +2025-04-02 20:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5586?force=True HTTP/1.1" 200 None +2025-04-02 20:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5585?force=True HTTP/1.1" 200 None +2025-04-02 20:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5584?force=True HTTP/1.1" 200 None +2025-04-02 20:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5583?force=True HTTP/1.1" 200 None +2025-04-02 20:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5582?force=True HTTP/1.1" 200 None +2025-04-02 20:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5581?force=True HTTP/1.1" 200 None +2025-04-02 20:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5580?force=True HTTP/1.1" 200 None +2025-04-02 20:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5579?force=True HTTP/1.1" 200 None +2025-04-02 20:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5578?force=True HTTP/1.1" 200 None +2025-04-02 20:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5577?force=True HTTP/1.1" 200 None +2025-04-02 20:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5576?force=True HTTP/1.1" 200 None +2025-04-02 20:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5575?force=True HTTP/1.1" 200 None +2025-04-02 20:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5574?force=True HTTP/1.1" 200 None +2025-04-02 20:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5573?force=True HTTP/1.1" 200 None +2025-04-02 20:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/5547?force=True HTTP/1.1" 200 None +2025-04-02 20:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 20:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/452?force=True HTTP/1.1" 200 None +2025-04-02 20:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 20:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/454?force=True HTTP/1.1" 200 None +2025-04-02 20:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/455?force=True HTTP/1.1" 200 None +2025-04-02 20:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/457?force=True HTTP/1.1" 200 None +2025-04-02 20:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/458?force=True HTTP/1.1" 200 None +2025-04-02 20:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/459?force=True HTTP/1.1" 200 None +2025-04-02 20:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/463?force=True HTTP/1.1" 200 None +2025-04-02 20:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/468?force=True HTTP/1.1" 200 None +2025-04-02 20:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/462?force=True HTTP/1.1" 200 None +2025-04-02 20:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/467?force=True HTTP/1.1" 200 None +2025-04-02 20:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/469?force=True HTTP/1.1" 200 None +2025-04-02 20:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/453?force=True HTTP/1.1" 200 None +2025-04-02 20:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/460?force=True HTTP/1.1" 200 None +2025-04-02 20:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/464?force=True HTTP/1.1" 200 None +2025-04-02 20:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/465?force=True HTTP/1.1" 200 None +2025-04-02 20:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/461?force=True HTTP/1.1" 200 None +2025-04-02 20:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/466?force=True HTTP/1.1" 200 None +2025-04-02 20:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/470?force=True HTTP/1.1" 200 None +2025-04-02 20:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/456?force=True HTTP/1.1" 200 None +2025-04-02 20:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-02 20:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-02 20:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "DELETE /wp-json/wc/v3/products/categories/20?force=True HTTP/1.1" 500 None +2025-04-02 20:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5602 HTTP/1.1" 200 None +2025-04-02 20:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5603 HTTP/1.1" 200 None +2025-04-02 20:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5604 HTTP/1.1" 200 None +2025-04-02 20:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5605 HTTP/1.1" 200 None +2025-04-02 20:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5606 HTTP/1.1" 200 None +2025-04-02 20:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5607 HTTP/1.1" 200 None +2025-04-02 20:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5608 HTTP/1.1" 200 None +2025-04-02 20:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5609 HTTP/1.1" 200 None +2025-04-02 20:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5610 HTTP/1.1" 200 None +2025-04-02 20:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5611 HTTP/1.1" 200 None +2025-04-02 20:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5612 HTTP/1.1" 200 None +2025-04-02 20:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5613 HTTP/1.1" 200 None +2025-04-02 20:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5614 HTTP/1.1" 200 None +2025-04-02 20:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5615 HTTP/1.1" 200 None +2025-04-02 20:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5616 HTTP/1.1" 200 None +2025-04-02 20:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5617 HTTP/1.1" 200 None +2025-04-02 20:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5618 HTTP/1.1" 200 None +2025-04-02 20:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5619 HTTP/1.1" 200 None +2025-04-02 20:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5620 HTTP/1.1" 200 None +2025-04-02 20:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5621 HTTP/1.1" 200 None +2025-04-02 20:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5622 HTTP/1.1" 200 None +2025-04-02 20:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5623 HTTP/1.1" 200 None +2025-04-02 20:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5624 HTTP/1.1" 200 None +2025-04-02 20:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5625 HTTP/1.1" 200 None +2025-04-02 20:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5626 HTTP/1.1" 200 None +2025-04-02 20:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5627 HTTP/1.1" 200 None +2025-04-02 20:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5628 HTTP/1.1" 200 None +2025-04-02 20:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5629 HTTP/1.1" 200 None +2025-04-02 20:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5630 HTTP/1.1" 200 None +2025-04-02 20:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5631 HTTP/1.1" 200 None +2025-04-02 20:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5632 HTTP/1.1" 200 None +2025-04-02 20:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5633 HTTP/1.1" 200 None +2025-04-02 20:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5634 HTTP/1.1" 200 None +2025-04-02 20:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5635 HTTP/1.1" 200 None +2025-04-02 20:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5636 HTTP/1.1" 200 None +2025-04-02 20:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5637 HTTP/1.1" 200 None +2025-04-02 20:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5638 HTTP/1.1" 200 None +2025-04-02 20:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5639 HTTP/1.1" 200 None +2025-04-02 20:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5640 HTTP/1.1" 200 None +2025-04-02 20:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5641 HTTP/1.1" 200 None +2025-04-02 20:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5642 HTTP/1.1" 200 None +2025-04-02 20:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5643 HTTP/1.1" 200 None +2025-04-02 20:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5644 HTTP/1.1" 200 None +2025-04-02 20:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5645 HTTP/1.1" 200 None +2025-04-02 20:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5646 HTTP/1.1" 200 None +2025-04-02 20:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5647 HTTP/1.1" 200 None +2025-04-02 20:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5648 HTTP/1.1" 200 None +2025-04-02 20:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5649 HTTP/1.1" 200 None +2025-04-02 20:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5650 HTTP/1.1" 200 None +2025-04-02 20:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5651 HTTP/1.1" 200 None +2025-04-02 20:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5652 HTTP/1.1" 200 None +2025-04-02 20:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 20:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 20:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 20:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 20:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5653 HTTP/1.1" 200 None +2025-04-02 21:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5654 HTTP/1.1" 200 None +2025-04-02 21:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5655 HTTP/1.1" 200 None +2025-04-02 21:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5656 HTTP/1.1" 200 None +2025-04-02 21:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5657 HTTP/1.1" 200 None +2025-04-02 21:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5658 HTTP/1.1" 200 None +2025-04-02 21:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5659 HTTP/1.1" 200 None +2025-04-02 21:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5660 HTTP/1.1" 200 None +2025-04-02 21:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5661 HTTP/1.1" 200 None +2025-04-02 21:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5662 HTTP/1.1" 200 None +2025-04-02 21:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5663 HTTP/1.1" 200 None +2025-04-02 21:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5664 HTTP/1.1" 200 None +2025-04-02 21:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5665 HTTP/1.1" 200 None +2025-04-02 21:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5666 HTTP/1.1" 200 None +2025-04-02 21:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5667 HTTP/1.1" 200 None +2025-04-02 21:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5668 HTTP/1.1" 200 None +2025-04-02 21:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5669 HTTP/1.1" 200 None +2025-04-02 21:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5670 HTTP/1.1" 200 None +2025-04-02 21:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5671 HTTP/1.1" 200 None +2025-04-02 21:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5672 HTTP/1.1" 200 None +2025-04-02 21:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5673 HTTP/1.1" 200 None +2025-04-02 21:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5674 HTTP/1.1" 200 None +2025-04-02 21:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5675 HTTP/1.1" 200 None +2025-04-02 21:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5676 HTTP/1.1" 200 None +2025-04-02 21:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5677 HTTP/1.1" 200 None +2025-04-02 21:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5678 HTTP/1.1" 200 None +2025-04-02 21:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5679 HTTP/1.1" 200 None +2025-04-02 21:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5680 HTTP/1.1" 200 None +2025-04-02 21:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5681 HTTP/1.1" 200 None +2025-04-02 21:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5682 HTTP/1.1" 200 None +2025-04-02 21:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5683 HTTP/1.1" 200 None +2025-04-02 21:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5684 HTTP/1.1" 200 None +2025-04-02 21:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5685 HTTP/1.1" 200 None +2025-04-02 21:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5686 HTTP/1.1" 200 None +2025-04-02 21:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5687 HTTP/1.1" 200 None +2025-04-02 21:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5688 HTTP/1.1" 200 None +2025-04-02 21:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5689 HTTP/1.1" 200 None +2025-04-02 21:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5690 HTTP/1.1" 200 None +2025-04-02 21:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5691 HTTP/1.1" 200 None +2025-04-02 21:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5692 HTTP/1.1" 200 None +2025-04-02 21:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5693 HTTP/1.1" 200 None +2025-04-02 21:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5694 HTTP/1.1" 200 None +2025-04-02 21:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5695 HTTP/1.1" 200 None +2025-04-02 21:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5696 HTTP/1.1" 200 None +2025-04-02 21:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5697 HTTP/1.1" 200 None +2025-04-02 21:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5698 HTTP/1.1" 200 None +2025-04-02 21:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5699 HTTP/1.1" 200 None +2025-04-02 21:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5700 HTTP/1.1" 200 None +2025-04-02 21:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-02 21:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media HTTP/1.1" 201 None +2025-04-02 21:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/media/5701 HTTP/1.1" 200 None +2025-04-02 21:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-02 21:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-02 21:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wp/v2/settings HTTP/1.1" 200 None +2025-04-04 11:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 11:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5672 HTTP/1.1" 200 None +2025-04-04 11:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/494 HTTP/1.1" 200 None +2025-04-04 11:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/495 HTTP/1.1" 200 None +2025-04-04 11:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/495 HTTP/1.1" 400 None +2025-04-04 11:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/496 HTTP/1.1" 200 None +2025-04-04 11:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5634 HTTP/1.1" 200 None +2025-04-04 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/496 HTTP/1.1" 200 None +2025-04-04 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/497 HTTP/1.1" 200 None +2025-04-04 11:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5653 HTTP/1.1" 200 None +2025-04-04 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/497 HTTP/1.1" 200 None +2025-04-04 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/498 HTTP/1.1" 200 None +2025-04-04 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5650 HTTP/1.1" 200 None +2025-04-04 11:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/498 HTTP/1.1" 200 None +2025-04-04 11:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/499 HTTP/1.1" 200 None +2025-04-04 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5659 HTTP/1.1" 200 None +2025-04-04 11:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/499 HTTP/1.1" 200 None +2025-04-04 11:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/500 HTTP/1.1" 200 None +2025-04-04 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/500 HTTP/1.1" 400 None +2025-04-04 11:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/501 HTTP/1.1" 400 None +2025-04-04 11:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/502 HTTP/1.1" 200 None +2025-04-04 11:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/502 HTTP/1.1" 400 None +2025-04-04 11:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/503 HTTP/1.1" 200 None +2025-04-04 11:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/503 HTTP/1.1" 400 None +2025-04-04 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/504 HTTP/1.1" 200 None +2025-04-04 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/504 HTTP/1.1" 400 None +2025-04-04 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/505 HTTP/1.1" 200 None +2025-04-04 11:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/505 HTTP/1.1" 400 None +2025-04-04 11:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/506 HTTP/1.1" 400 None +2025-04-04 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/507 HTTP/1.1" 200 None +2025-04-04 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5677 HTTP/1.1" 200 None +2025-04-04 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/507 HTTP/1.1" 200 None +2025-04-04 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/508 HTTP/1.1" 200 None +2025-04-04 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/508 HTTP/1.1" 400 None +2025-04-04 11:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/509 HTTP/1.1" 200 None +2025-04-04 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/509 HTTP/1.1" 400 None +2025-04-04 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/510 HTTP/1.1" 200 None +2025-04-04 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/510 HTTP/1.1" 400 None +2025-04-04 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5683 HTTP/1.1" 200 None +2025-04-04 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/511 HTTP/1.1" 200 None +2025-04-04 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/512 HTTP/1.1" 200 None +2025-04-04 11:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/512 HTTP/1.1" 400 None +2025-04-04 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/513 HTTP/1.1" 200 None +2025-04-04 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/5681 HTTP/1.1" 200 None +2025-04-04 11:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/513 HTTP/1.1" 200 None +2025-04-04 11:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/categories/ HTTP/1.1" 201 None +2025-04-04 11:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/514 HTTP/1.1" 200 None +2025-04-04 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories/?per_page=100 HTTP/1.1" 200 None +2025-04-04 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media/None HTTP/1.1" 404 None +2025-04-04 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/categories/514 HTTP/1.1" 400 None +2025-04-04 14:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-04 14:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-04 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-04 14:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-04 14:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-04 14:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 201 None +2025-04-04 14:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 201 None +2025-04-04 14:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 201 None +2025-04-04 14:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 201 None +2025-04-04 14:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 201 None +2025-04-04 14:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 201 None +2025-04-04 14:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/66/terms HTTP/1.1" 201 None +2025-04-04 14:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/66/terms HTTP/1.1" 201 None +2025-04-04 14:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 201 None +2025-04-04 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 201 None +2025-04-04 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 201 None +2025-04-04 14:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 400 None +2025-04-04 14:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/65/terms HTTP/1.1" 201 None +2025-04-04 14:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/65/terms HTTP/1.1" 201 None +2025-04-04 14:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 201 None +2025-04-04 14:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 201 None +2025-04-04 14:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 201 None +2025-04-04 14:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 201 None +2025-04-04 14:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 201 None +2025-04-04 14:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/69/terms HTTP/1.1" 201 None +2025-04-04 14:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/69/terms HTTP/1.1" 201 None +2025-04-04 14:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 14:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5717 HTTP/1.1" 200 None +2025-04-04 14:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-04-04 14:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-04-04 14:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-04-04 14:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-04-04 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-04-04 14:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes HTTP/1.1" 400 None +2025-04-04 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/attributes?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 400 None +2025-04-04 14:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 400 None +2025-04-04 14:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 400 None +2025-04-04 14:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 400 None +2025-04-04 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/68/terms HTTP/1.1" 400 None +2025-04-04 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/66/terms HTTP/1.1" 400 None +2025-04-04 14:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/66/terms HTTP/1.1" 400 None +2025-04-04 14:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 400 None +2025-04-04 14:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 400 None +2025-04-04 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 400 None +2025-04-04 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/70/terms HTTP/1.1" 400 None +2025-04-04 14:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/65/terms HTTP/1.1" 400 None +2025-04-04 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/65/terms HTTP/1.1" 400 None +2025-04-04 14:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 400 None +2025-04-04 14:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 400 None +2025-04-04 14:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 400 None +2025-04-04 14:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 400 None +2025-04-04 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/67/terms HTTP/1.1" 400 None +2025-04-04 14:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/69/terms HTTP/1.1" 400 None +2025-04-04 14:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/attributes/69/terms HTTP/1.1" 400 None +2025-04-04 14:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:23:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:23:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 14:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 14:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 14:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 14:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 14:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 14:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 14:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 14:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 14:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 14:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5718/variations HTTP/1.1" 200 None +2025-04-04 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 200 None +2025-04-04 15:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5718 HTTP/1.1" 400 None +2025-04-04 15:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5719/variations HTTP/1.1" 200 None +2025-04-04 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 200 None +2025-04-04 15:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5719 HTTP/1.1" 400 None +2025-04-04 15:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720/variations HTTP/1.1" 200 None +2025-04-04 15:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 200 None +2025-04-04 15:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720/variations HTTP/1.1" 200 None +2025-04-04 15:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5720/variations HTTP/1.1" 200 None +2025-04-04 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5720 HTTP/1.1" 400 None +2025-04-04 15:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:20:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:20:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:22:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:22:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5721 HTTP/1.1" 200 None +2025-04-04 15:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5721 HTTP/1.1" 400 None +2025-04-04 15:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5721/variations HTTP/1.1" 200 None +2025-04-04 15:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:28:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:28:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723/variations HTTP/1.1" 200 None +2025-04-04 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723 HTTP/1.1" 400 None +2025-04-04 15:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5723/variations HTTP/1.1" 400 None +2025-04-04 15:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5723 HTTP/1.1" 200 None +2025-04-04 15:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5724 HTTP/1.1" 200 None +2025-04-04 15:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5725 HTTP/1.1" 200 None +2025-04-04 15:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725/variations HTTP/1.1" 400 None +2025-04-04 15:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5725/variations HTTP/1.1" 200 None +2025-04-04 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5725 HTTP/1.1" 400 None +2025-04-04 15:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726/variations HTTP/1.1" 200 None +2025-04-04 15:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726/variations HTTP/1.1" 400 None +2025-04-04 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5726 HTTP/1.1" 200 None +2025-04-04 15:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5726 HTTP/1.1" 400 None +2025-04-04 15:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 15:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 15:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 15:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 15:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 15:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 15:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727 HTTP/1.1" 400 None +2025-04-04 16:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727/variations HTTP/1.1" 200 None +2025-04-04 16:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5727/variations HTTP/1.1" 400 None +2025-04-04 16:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5727 HTTP/1.1" 200 None +2025-04-04 16:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728 HTTP/1.1" 200 None +2025-04-04 16:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728 HTTP/1.1" 400 None +2025-04-04 16:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5728/variations HTTP/1.1" 200 None +2025-04-04 16:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5728/variations HTTP/1.1" 400 None +2025-04-04 16:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 502 157 +2025-04-04 16:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729 HTTP/1.1" 400 None +2025-04-04 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729/variations HTTP/1.1" 200 None +2025-04-04 16:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5729/variations HTTP/1.1" 400 None +2025-04-04 16:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5729 HTTP/1.1" 200 None +2025-04-04 16:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:22:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:22:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:22:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:23:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:23:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:23:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:23:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:23:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:23:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:23:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:23:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:23:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:23:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:23:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:23:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:23:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731 HTTP/1.1" 400 None +2025-04-04 16:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731/variations HTTP/1.1" 200 None +2025-04-04 16:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5731/variations HTTP/1.1" 400 None +2025-04-04 16:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5731 HTTP/1.1" 200 None +2025-04-04 16:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:28:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:28:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5733 HTTP/1.1" 200 None +2025-04-04 16:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5734 HTTP/1.1" 200 None +2025-04-04 16:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5734/variations HTTP/1.1" 200 None +2025-04-04 16:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5734/variations HTTP/1.1" 400 None +2025-04-04 16:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 16:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 16:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735/variations HTTP/1.1" 200 None +2025-04-04 16:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5735/variations HTTP/1.1" 400 None +2025-04-04 16:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5735 HTTP/1.1" 200 None +2025-04-04 16:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 16:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5736 HTTP/1.1" 200 None +2025-04-04 16:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5736 HTTP/1.1" 200 None +2025-04-04 16:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5736 HTTP/1.1" 200 None +2025-04-04 16:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5736 HTTP/1.1" 200 None +2025-04-04 16:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5736 HTTP/1.1" 200 None +2025-04-04 16:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5736 HTTP/1.1" 200 None +2025-04-04 16:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 16:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 16:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 17:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 17:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 17:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 17:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 17:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:20:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:20:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:20:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:21:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:21:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:21:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:22:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:22:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:22:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5737 HTTP/1.1" 200 None +2025-04-04 17:24:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 17:24:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 17:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-04 17:24:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-04 17:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-04 17:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:26:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-04 17:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-04 17:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-04 17:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 08:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 08:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 08:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 08:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5738 HTTP/1.1" 400 None +2025-04-07 08:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5738 HTTP/1.1" 200 None +2025-04-07 08:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 08:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 08:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 08:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 08:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 08:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:51:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 08:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 08:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 08:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 08:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 08:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 08:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 08:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5744/variations HTTP/1.1" 400 None +2025-04-07 09:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744/variations HTTP/1.1" 200 None +2025-04-07 09:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:24:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:24:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:24:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:39:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:39:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 400 None +2025-04-07 09:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5744 HTTP/1.1" 200 None +2025-04-07 09:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 502 157 +2025-04-07 09:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:43:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:43:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 09:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:43:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:43:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:43:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:43:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:43:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5745 HTTP/1.1" 200 None +2025-04-07 09:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 400 None +2025-04-07 09:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/None HTTP/1.1" 404 None +2025-04-07 09:53:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 09:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5792 HTTP/1.1" 200 None +2025-04-07 09:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 09:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 09:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 09:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 09:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 09:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 09:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-04-07 10:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 502 157 +2025-04-07 10:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-04-07 10:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 502 157 +2025-04-07 10:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5793 HTTP/1.1" 200 None +2025-04-07 10:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 10:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5794 HTTP/1.1" 200 None +2025-04-07 10:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 10:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 10:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 400 None +2025-04-07 10:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5796 HTTP/1.1" 200 None +2025-04-07 10:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:19:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:19:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:19:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:20:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5797 HTTP/1.1" 200 None +2025-04-07 10:20:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:20:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:20:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 10:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5798 HTTP/1.1" 200 None +2025-04-07 10:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 10:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 10:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 10:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5799 HTTP/1.1" 200 None +2025-04-07 10:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 10:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 10:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5800 HTTP/1.1" 200 None +2025-04-07 10:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-04-07 10:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 502 157 +2025-04-07 10:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 502 157 +2025-04-07 10:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 10:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 502 157 +2025-04-07 11:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804/variations HTTP/1.1" 200 None +2025-04-07 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5804/variations HTTP/1.1" 400 None +2025-04-07 11:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5804/variations HTTP/1.1" 400 None +2025-04-07 11:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5804/variations HTTP/1.1" 400 None +2025-04-07 11:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5804 HTTP/1.1" 200 None +2025-04-07 11:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5805 HTTP/1.1" 200 None +2025-04-07 11:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5806 HTTP/1.1" 200 None +2025-04-07 11:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807/variations HTTP/1.1" 200 None +2025-04-07 11:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5807/variations HTTP/1.1" 400 None +2025-04-07 11:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5807/variations HTTP/1.1" 400 None +2025-04-07 11:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5807/variations HTTP/1.1" 400 None +2025-04-07 11:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5807 HTTP/1.1" 200 None +2025-04-07 11:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5808 HTTP/1.1" 200 None +2025-04-07 11:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809/variations HTTP/1.1" 200 None +2025-04-07 11:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5809/variations HTTP/1.1" 400 None +2025-04-07 11:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5809/variations HTTP/1.1" 400 None +2025-04-07 11:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5809/variations HTTP/1.1" 400 None +2025-04-07 11:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5809 HTTP/1.1" 200 None +2025-04-07 11:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:18:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:18:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5810 HTTP/1.1" 200 None +2025-04-07 11:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:19:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:19:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:24:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=1 HTTP/1.1" 200 None +2025-04-07 11:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wp/v2/media?per_page=100&page=2 HTTP/1.1" 400 None +2025-04-07 11:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:24:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:24:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:24:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:24:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:24:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:25:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:25:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:25:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:26:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814/variations HTTP/1.1" 200 None +2025-04-07 11:26:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5814/variations HTTP/1.1" 201 None +2025-04-07 11:26:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:54 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5814/variations HTTP/1.1" 201 None +2025-04-07 11:26:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/5814/variations HTTP/1.1" 201 None +2025-04-07 11:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:26:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:26:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5814 HTTP/1.1" 200 None +2025-04-07 11:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:01 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:27:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:27:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:27:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:27:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:28:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:28:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:28:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5818 HTTP/1.1" 200 None +2025-04-07 11:29:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:29:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:29:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:29:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:30:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:30:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:30:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5819 HTTP/1.1" 200 None +2025-04-07 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:31:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:31:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:31:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:32:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:32:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:32:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5820 HTTP/1.1" 200 None +2025-04-07 11:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:20 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:33:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:33:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:33:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:33:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:34:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:34:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:34:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5821 HTTP/1.1" 200 None +2025-04-07 11:35:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:35:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:35:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:35:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:36:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:36:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:36:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5822 HTTP/1.1" 200 None +2025-04-07 11:37:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:37:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:37:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:37:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:38:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:38:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5823 HTTP/1.1" 200 None +2025-04-07 11:39:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:39:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:39:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:39:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:39:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:40:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:40:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:40:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5824 HTTP/1.1" 200 None +2025-04-07 11:41:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:39 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:41:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:41:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:41:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:41:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:42:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:42:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:42:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:43:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:43:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:44:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:44:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:44:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5826 HTTP/1.1" 200 None +2025-04-07 11:44:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:44:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:44:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:44:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:45:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:45:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:45:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5827 HTTP/1.1" 200 None +2025-04-07 11:46:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:34 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:46:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:46:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:46:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:46:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:47:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:47:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:47:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5828 HTTP/1.1" 200 None +2025-04-07 11:48:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:48:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:48:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:48:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:48:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:48:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:49:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:49:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:50:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:50:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5850 HTTP/1.1" 200 None +2025-04-07 11:51:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:12 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:51:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:51:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:51:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:52:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:52:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:52:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5851 HTTP/1.1" 200 None +2025-04-07 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:26 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:53:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:53:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:53:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:54:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:54:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:54:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5852 HTTP/1.1" 200 None +2025-04-07 11:55:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:40 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:55:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:55:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:55:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:55:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:56:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:56:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:56:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5853 HTTP/1.1" 200 None +2025-04-07 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 11:57:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:57:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:57:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:57:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:57:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:58:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:58:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:58:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 11:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 11:59:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 11:59:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5854 HTTP/1.1" 200 None +2025-04-07 12:00:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:10 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:00:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:00:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:00:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:00:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:52 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:01:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:01:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:01:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5855 HTTP/1.1" 200 None +2025-04-07 12:02:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:30 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:02:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:02:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:02:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:02:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:03:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:03:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:03:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5856 HTTP/1.1" 200 None +2025-04-07 12:04:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:04:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:04:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:04:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:04:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:05:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:05:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:05:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:06:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:06:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:06:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5857 HTTP/1.1" 200 None +2025-04-07 12:07:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:07:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:07:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:07:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:07:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:08:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:08:59 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:08:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5858 HTTP/1.1" 200 None +2025-04-07 12:09:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:45 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:09:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:09:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:09:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:09:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:09:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:09:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:09:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:10:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:10:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:10:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:11:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:11:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5859 HTTP/1.1" 200 None +2025-04-07 12:12:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:17 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:12:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:12:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:12:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:12:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:18 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:13:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:13:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:13:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:26 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:32 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:35 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:40 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5860 HTTP/1.1" 200 None +2025-04-07 12:14:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:53 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:14:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:55 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:14:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:14:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:14:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:14:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:08 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:11 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:14 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:20 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:22 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:24 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:25 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:36 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:39 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:42 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:44 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:45 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:57 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:15:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:15:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:15:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:07 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:10 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:13 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:16 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:21 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:22 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:22 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:23 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:23 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:24 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:24 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:25 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:25 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:26 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:26 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:31 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:36 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:37 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:38 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:47 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:48 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:50 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:53 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:56 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:16:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:58 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:16:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:16:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:00 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:02 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:03 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:05 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:06 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:07 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:07 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:08 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:08 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:09 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:09 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:10 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:10 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:11 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:11 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:12 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:12 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:13 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:13 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:14 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:14 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:15 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:15 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:16 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:16 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:17 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:17 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:18 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:18 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:19 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:19 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:20 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:20 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:21 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:21 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:27 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:27 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:28 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:28 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:29 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:29 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:30 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:30 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:31 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:31 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:32 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:32 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:33 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:33 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:34 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5861 HTTP/1.1" 200 None +2025-04-07 12:17:34 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:35 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:35 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:36 - DEBUG - https://lescreationsdemissbleue.local:443 "POST /wp-json/wc/v3/products/ HTTP/1.1" 201 None +2025-04-07 12:17:36 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:37 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:37 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:38 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:38 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:39 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:39 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:40 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:40 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:41 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:41 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:42 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:42 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:43 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:43 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:44 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:44 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:45 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:45 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:46 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:46 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:47 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:47 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:48 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:48 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:49 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:49 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:50 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:50 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:51 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:51 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:52 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:52 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:53 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:53 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:54 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:54 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:55 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:55 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:56 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:56 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:57 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:57 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:58 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:17:58 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:17:59 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:17:59 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:00 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:18:00 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:01 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:18:01 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:02 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:18:02 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:03 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:18:03 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:04 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/categories?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:18:04 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:05 - DEBUG - https://lescreationsdemissbleue.local:443 "PUT /wp-json/wc/v3/products/5862 HTTP/1.1" 200 None +2025-04-07 12:18:05 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443 +2025-04-07 12:18:06 - DEBUG - https://lescreationsdemissbleue.local:443 "GET /wp-json/wc/v3/products/?per_page=100 HTTP/1.1" 200 None +2025-04-07 12:18:06 - DEBUG - Starting new HTTPS connection (1): lescreationsdemissbleue.local:443